diff options
author | Mario <mario@mariovavti.com> | 2023-04-16 10:59:26 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-04-16 10:59:26 +0000 |
commit | ad5bbc463b0d94a3b920b72bb224b9435a422a4c (patch) | |
tree | 12a96c146a0443b8700293050ea73f04ddf6ca4c /Zotlabs/Lib/Libzot.php | |
parent | 81993cf2a3c4b4e4be934838fa017858414a7891 (diff) | |
download | volse-hubzilla-ad5bbc463b0d94a3b920b72bb224b9435a422a4c.tar.gz volse-hubzilla-ad5bbc463b0d94a3b920b72bb224b9435a422a4c.tar.bz2 volse-hubzilla-ad5bbc463b0d94a3b920b72bb224b9435a422a4c.zip |
fix wrong variable
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index b75e4e135..59fa863da 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1374,7 +1374,7 @@ class Libzot { $uids = ids_to_querystr($uids, 'uid'); $z = q("SELECT channel_hash FROM channel WHERE channel_hash != '%s' AND channel_id IN ($uids)", - dbesc($msg['sender']) + dbesc($env['sender']) ); if ($z) { |