diff options
author | Mario <mario@mariovavti.com> | 2024-07-04 10:13:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-07-04 10:13:28 +0000 |
commit | db5e524e3c4c3d2b5f7d2157e0b60d40bb9c5997 (patch) | |
tree | 645dc7ce3e26761041a1cc7151f5cc3f0bab0652 | |
parent | 8f9e9116df7cc104f363874e196eb6f7abaf922e (diff) | |
parent | f882c44fb397c8a891c0e16541a6bd44a6086c20 (diff) | |
download | volse-hubzilla-db5e524e3c4c3d2b5f7d2157e0b60d40bb9c5997.tar.gz volse-hubzilla-db5e524e3c4c3d2b5f7d2157e0b60d40bb9c5997.tar.bz2 volse-hubzilla-db5e524e3c4c3d2b5f7d2157e0b60d40bb9c5997.zip |
Merge branch 'dev' into 9.2RC
-rw-r--r-- | include/zid.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zid.php b/include/zid.php index 05b4cee16..159a3b834 100644 --- a/include/zid.php +++ b/include/zid.php @@ -38,7 +38,7 @@ function is_matrix_url($url) { * @return string */ function zid($s, $address = '') { - if ($s || strpos($s,'zid=')) { + if (!$s || strpos($s,'zid=')) { return $s; } |