From: Hypolite Petovan Date: Sun, 17 Dec 2017 21:22:58 +0000 (-0500) Subject: Remove unused variable in Protocol\PortableContact X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b8e41906a4c0ba8d82d5cce6ae59bc5515462e80;p=friendica.git Remove unused variable in Protocol\PortableContact --- diff --git a/src/Protocol/PortableContact.php b/src/Protocol/PortableContact.php index e0213ca5c4..ccae5520b3 100644 --- a/src/Protocol/PortableContact.php +++ b/src/Protocol/PortableContact.php @@ -817,7 +817,7 @@ class PortableContact } /// @fixme $element is unavailable here - $server["site_name"] = $xpath->evaluate($element."//head/title/text()")->item(0)->nodeValue; + $server["site_name"] = $xpath->evaluate("//head/title/text()")->item(0)->nodeValue; return $server; }