]> git.mxchange.org Git - friendica.git/blobdiff - mod/match.php
Prevent fatal error when $friends isn't an array
[friendica.git] / mod / match.php
index 1856dd981aa78972b6a59d176c4bbdc428bcdbc9..0ec753466267a738fd626ba922abecafec02332b 100644 (file)
@@ -14,6 +14,7 @@ use Friendica\Database\DBA;
 use Friendica\Model\Contact;
 use Friendica\Util\Network;
 use Friendica\Util\Proxy as ProxyUtils;
+use Friendica\Util\Strings;
 
 require_once 'include/text.php';
 
@@ -76,7 +77,7 @@ function match_content(App $a)
                        $id = 0;
 
                        foreach ($j->results as $jj) {
-                               $match_nurl = normalise_link($jj->url);
+                               $match_nurl = Strings::normaliseLink($jj->url);
                                $match = q(
                                        "SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1",
                                        intval(local_user()),
@@ -113,7 +114,7 @@ function match_content(App $a)
                                }
                        }
 
-                       $tpl = get_markup_template('viewcontact_template.tpl');
+                       $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
 
                        $o .= Renderer::replaceMacros($tpl, [
                                '$title'    => L10n::t('Profile Match'),