diff options
author | Max Kostikov <max@kostikov.co> | 2021-03-10 19:52:05 +0000 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2021-03-10 19:52:05 +0000 |
commit | 0a86efc6317d64173ec9785c6edeeedaffbae04e (patch) | |
tree | c9e8ed6ca254ae5e0db325e62b6ffee4e1e54442 /Zotlabs | |
parent | 15bc5c64f3f4c3226e6329f8b8aa73df4aeb5e0b (diff) | |
parent | f8467845d208c0efde81d00d51cd0eb10637f6d5 (diff) | |
download | volse-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 'Zotlabs')
-rw-r--r-- | Zotlabs/Daemon/Queue.php | 2 | ||||
-rw-r--r-- | Zotlabs/Lib/Queue.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Queue.php b/Zotlabs/Daemon/Queue.php index 36bdcfe81..e1f4b73de 100644 --- a/Zotlabs/Daemon/Queue.php +++ b/Zotlabs/Daemon/Queue.php @@ -28,7 +28,7 @@ class Queue { if ($r) { foreach ($r as $rr) { $h = parse_url($rr['outq_posturl']); - $desturl = $h['scheme'] . '://' . $h['host'] . (($h['port']) ? ':' . $h['port'] : ''); + $desturl = $h['scheme'] . '://' . $h['host'] . (isset($h['port']) ? ':' . $h['port'] : ''); q("update site set site_dead = 1 where site_dead = 0 and site_url = '%s' and site_update < %s - INTERVAL %s", dbesc($desturl), db_utcnow(), db_quoteinterval('1 MONTH') diff --git a/Zotlabs/Lib/Queue.php b/Zotlabs/Lib/Queue.php index ba314ded3..373a7d304 100644 --- a/Zotlabs/Lib/Queue.php +++ b/Zotlabs/Lib/Queue.php @@ -134,7 +134,7 @@ class Queue { $base = null; $h = parse_url($outq['outq_posturl']); if($h !== false) - $base = $h['scheme'] . '://' . $h['host'] . (($h['port']) ? ':' . $h['port'] : ''); + $base = $h['scheme'] . '://' . $h['host'] . (isset($h['port']) ? ':' . $h['port'] : ''); if(($base) && ($base !== z_root()) && ($immediate)) { $y = q("select site_update, site_dead from site where site_url = '%s' ", |