diff options
author | friendica <info@friendica.com> | 2015-02-09 00:43:38 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-09 00:43:38 -0800 |
commit | d473c3c500a39ce1efdf6902114f899644bcc002 (patch) | |
tree | b8a8dac415f168c95b8f7c7e41a8c5356f92fb9b /include/network.php | |
parent | 92afed0f5c61c6f5fa1700f6acc9af7692cd6129 (diff) | |
download | volse-hubzilla-d473c3c500a39ce1efdf6902114f899644bcc002.tar.gz volse-hubzilla-d473c3c500a39ce1efdf6902114f899644bcc002.tar.bz2 volse-hubzilla-d473c3c500a39ce1efdf6902114f899644bcc002.zip |
fix for service_plink() after observing it in the wild
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php index 366ac0d24..a7127c1a2 100644 --- a/include/network.php +++ b/include/network.php @@ -1531,7 +1531,7 @@ function service_plink($contact, $guid) { $m = parse_url($contact['xchan_url']); if($m) { - $url = $scheme . '://' . $m['host'] . (($m['port']) ? ':' . $m['port'] : ''); + $url = $m['scheme'] . '://' . $m['host'] . (($m['port']) ? ':' . $m['port'] : ''); } else $url = 'https://' . substr($contact['xchan_addr'],strpos($contact['xchan_addr'],'@')+1); |