X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fparse_url.php;h=6fb404f1b052f9714d9afb9ff2f62c87872570b0;hb=391c5913227c7f62f19b4f08906b0b1b0b618b33;hp=4fabba6c7e7c001e65b06cf783e9c05c0cd30641;hpb=3b4f5f98f80b2f93304786b5bfd5faec91572a15;p=friendica.git diff --git a/mod/parse_url.php b/mod/parse_url.php index 4fabba6c7e..6fb404f1b0 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -11,6 +11,7 @@ */ use Friendica\App; +use Friendica\Core\Addon; use Friendica\Util\ParseUrl; require_once("include/items.php"); @@ -59,10 +60,10 @@ function parse_url_content(App $a) { // the URL with the corresponding BBCode media tag $redirects = 0; // Fetch the header of the URL - $result = z_fetch_url($url, false, $redirects, array("novalidate" => true, "nobody" => true)); + $result = z_fetch_url($url, false, $redirects, ["novalidate" => true, "nobody" => true]); if($result["success"]) { // Convert the header fields into an array - $hdrs = array(); + $hdrs = []; $h = explode("\n", $result["header"]); foreach ($h as $l) { list($k,$v) = array_map("trim", explode(":", trim($l), 2)); @@ -89,9 +90,9 @@ function parse_url_content(App $a) { $template = "[bookmark=%s]%s[/bookmark]%s"; - $arr = array("url" => $url, "text" => ""); + $arr = ["url" => $url, "text" => ""]; - call_hooks("parse_link", $arr); + Addon::callHooks("parse_link", $arr); if (strlen($arr["text"])) { echo $arr["text"]; @@ -102,7 +103,7 @@ function parse_url_content(App $a) { // need to parse the url for content. if ($url && $title && $text) { - $title = str_replace(array("\r","\n"),array("",""),$title); + $title = str_replace(["\r","\n"],["",""],$title); $text = "[quote]" . trim($text) . "[/quote]" . $br;