From: Michael Vogel Date: Thu, 24 Mar 2016 20:32:55 +0000 (+0100) Subject: Avoid a guid whith spaces. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7e7cac19f62cef5fe52660a9312ac01a7d3f74a2;p=friendica.git Avoid a guid whith spaces. --- diff --git a/include/diaspora.php b/include/diaspora.php index c5d6943e59..32190bc7d6 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2611,8 +2611,9 @@ class diaspora { $link = $matches[1]; $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link); - if (($ret["root_guid"] == $link) OR ($ret["root_guid"] == "")) + if (($ret["root_guid"] == $link) OR (trim($ret["root_guid"]) == "")) return(false); + return($ret); }