aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-11-02 18:32:52 +0000
committerMario <mario@mariovavti.com>2022-11-02 18:32:52 +0000
commit2650a647e95beb3d6f4324ec9db7488d4562ba42 (patch)
treed26e53342be4dbdc11e8a5529e9fb88ca651e423 /Zotlabs/Lib
parent331126916239b1ecad48faa24a8e961cffa6e69f (diff)
downloadvolse-hubzilla-2650a647e95beb3d6f4324ec9db7488d4562ba42.tar.gz
volse-hubzilla-2650a647e95beb3d6f4324ec9db7488d4562ba42.tar.bz2
volse-hubzilla-2650a647e95beb3d6f4324ec9db7488d4562ba42.zip
php warnings
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Libzot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php
index cbb614429..6a6e1c0e2 100644
--- a/Zotlabs/Lib/Libzot.php
+++ b/Zotlabs/Lib/Libzot.php
@@ -1920,7 +1920,7 @@ class Libzot {
// preserve conversations with which you are involved from expiration
- $stored = (($item_result && $item_result['item']) ? $item_result['item'] : false);
+ $stored = ((isset($item_result['item'])) ? $item_result['item'] : false);
if ((is_array($stored)) && ($stored['id'] != $stored['parent'])
&& ($stored['author_xchan'] === $channel['channel_hash'])) {
retain_item($stored['item']['parent']);