diff options
author | Mario <mario@mariovavti.com> | 2021-03-10 20:35:13 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-10 20:35:13 +0000 |
commit | 689603de8240619f801daeb56c0de0197f66cedd (patch) | |
tree | 6299f1d1d6631a9b777f26b6cb205459ea7eb781 /include/bookmarks.php | |
parent | b51049227f28bc1badf9387ea5bff16bfd7debcd (diff) | |
parent | 0a86efc6317d64173ec9785c6edeeedaffbae04e (diff) | |
download | volse-hubzilla-689603de8240619f801daeb56c0de0197f66cedd.tar.gz volse-hubzilla-689603de8240619f801daeb56c0de0197f66cedd.tar.bz2 volse-hubzilla-689603de8240619f801daeb56c0de0197f66cedd.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'include/bookmarks.php')
-rw-r--r-- | include/bookmarks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bookmarks.php b/include/bookmarks.php index 145119347..207cf5a33 100644 --- a/include/bookmarks.php +++ b/include/bookmarks.php @@ -73,6 +73,6 @@ function get_bookmark_link($observer) { $h = @parse_url($observer['xchan_url']); if($h) - return $h['scheme'] . '://' . $h['host'] . (($h['port']) ? ':' . $h['port'] : '') . '/rbmark?f='; + return $h['scheme'] . '://' . $h['host'] . (isset($h['port']) ? ':' . $h['port'] : '') . '/rbmark?f='; return ''; } |