1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-26 02:41:28 +00:00

Fix parse error in Protocol\PortableContact ()

This commit is contained in:
Hypolite Petovan 2018-07-28 08:52:57 -04:00 committed by GitHub
parent c30ac30f29
commit 0902ea508d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1544,7 +1544,7 @@ class PortableContact
}
foreach ($serverlist as $server) {
$server_url = str_replace("/index.php", "", $server['url'];
$server_url = str_replace("/index.php", "", $server['url']);
$r = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", DBA::escape(normalise_link($server_url)));