From: Michael Date: Fri, 26 May 2023 07:17:09 +0000 (+0000) Subject: "getStyledURL" is now public X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7e030720829036ab76eef4ab91f695710ce4bb11;p=friendica.git "getStyledURL" is now public --- diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 89bd802027..eae0bc4326 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -517,7 +517,7 @@ class BBCode * @param string $url URL that is about to be reformatted * @return string reformatted link */ - private static function getStyledURL(string $url): string + public static function getStyledURL(string $url): string { $parts = parse_url($url); $scheme = $parts['scheme'] . '://';