aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2024-03-05 20:52:16 +0100
committerHarald Eilertsen <haraldei@anduin.net>2024-05-01 20:57:56 +0200
commit630cecd740762cc6111468b46644fcae85a360b3 (patch)
treec478b6563a54f75c2b72838a70820f708d6793be /Zotlabs
parentb6e6cecf70e4d91f00f190be7bd852beceefe803 (diff)
downloadvolse-hubzilla-630cecd740762cc6111468b46644fcae85a360b3.tar.gz
volse-hubzilla-630cecd740762cc6111468b46644fcae85a360b3.tar.bz2
volse-hubzilla-630cecd740762cc6111468b46644fcae85a360b3.zip
Libzot: get_rpost_path was broken for URL's with no port.
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/Libzot.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php
index 89157bf5e..bc944c97c 100644
--- a/Zotlabs/Lib/Libzot.php
+++ b/Zotlabs/Lib/Libzot.php
@@ -2569,9 +2569,14 @@ class Libzot {
if (!$observer)
return '';
- $parsed = parse_url($observer['xchan_url']);
+ $url = $observer['xchan_url'];
+ if (preg_match('|^https?://|', $url) === 0) {
+ $url = "https://{$url}";
+ }
+
+ $parsed = parse_url($url);
- return $parsed['scheme'] . '://' . $parsed['host'] . (($parsed['port']) ? ':' . $parsed['port'] : '') . '/rpost?f=';
+ return $parsed['scheme'] . '://' . $parsed['host'] . (isset($parsed['port']) ? ':' . $parsed['port'] : '') . '/rpost?f=';
}
/**