X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fparse_url.php;h=dbe45aba15736245f606d9ea110c2b8b7d5af5db;hb=c4d3ab68785122ff070c65a444aaa0833b746b2b;hp=77529714f20f56a83cadcee7e075be5b8d07b2aa;hpb=6a165656426a533848554e7b8e0fae2e70f21399;p=friendica.git diff --git a/mod/parse_url.php b/mod/parse_url.php index 77529714f2..dbe45aba15 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -10,7 +10,8 @@ * @see ParseUrl::getSiteinfo() for more information about scraping embeddable content */ -use \Friendica\ParseUrl; +use Friendica\App; +use Friendica\Util\ParseUrl; require_once("include/items.php"); @@ -58,10 +59,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)); @@ -88,7 +89,7 @@ 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); @@ -101,7 +102,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;