aboutsummaryrefslogtreecommitdiffstats
path: root/include/bookmarks.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2021-03-10 19:52:05 +0000
committerMax Kostikov <max@kostikov.co>2021-03-10 19:52:05 +0000
commit0a86efc6317d64173ec9785c6edeeedaffbae04e (patch)
treec9e8ed6ca254ae5e0db325e62b6ffee4e1e54442 /include/bookmarks.php
parent15bc5c64f3f4c3226e6329f8b8aa73df4aeb5e0b (diff)
parentf8467845d208c0efde81d00d51cd0eb10637f6d5 (diff)
downloadvolse-hubzilla-0a86efc6317d64173ec9785c6edeeedaffbae04e.tar.gz
volse-hubzilla-0a86efc6317d64173ec9785c6edeeedaffbae04e.tar.bz2
volse-hubzilla-0a86efc6317d64173ec9785c6edeeedaffbae04e.zip
Merge branch 'php8fixes' into 'dev'
Check for HTTP port use on URL build See merge request hubzilla/core!1924
Diffstat (limited to 'include/bookmarks.php')
-rw-r--r--include/bookmarks.php2
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 '';
}