diff options
author | Mario <mario@mariovavti.com> | 2024-12-26 07:55:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-26 07:55:08 +0000 |
commit | 2980827925746b32d267abe6875fe4e771b68cf7 (patch) | |
tree | 97d3b668d80d7a61d90db2ff0303ec2532a60405 /include | |
parent | 45a78dcbc01d0a5b6a3143ef92e3a2f334c283af (diff) | |
download | volse-hubzilla-2980827925746b32d267abe6875fe4e771b68cf7.tar.gz volse-hubzilla-2980827925746b32d267abe6875fe4e771b68cf7.tar.bz2 volse-hubzilla-2980827925746b32d267abe6875fe4e771b68cf7.zip |
fix another possible loop
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 00c04700e..965c816c4 100644 --- a/include/items.php +++ b/include/items.php @@ -3922,7 +3922,7 @@ function drop_item($id, $stage = DROPITEM_NORMAL, $force = false, $uid = 0, $obs $ok_to_delete = true; } - // remote delete when nobody is authenticated (called from Libzot) + // remote delete when nobody is authenticated (called from Libzot and Daemons) if ($uid && intval($uid) === intval($item['uid'])) { $ok_to_delete = true; } |