diff options
author | Mario <mario@mariovavti.com> | 2024-12-26 08:54:58 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-26 08:54:58 +0000 |
commit | f66f0e398be5dfc4d23a5eb7f8371de79eba5501 (patch) | |
tree | 68761d33c6636e9b23db30758d53f2eeea15e377 /Zotlabs | |
parent | 553b3f6faa8a1c6711aeee97a810140bcdb0d70e (diff) | |
download | volse-hubzilla-f66f0e398be5dfc4d23a5eb7f8371de79eba5501.tar.gz volse-hubzilla-f66f0e398be5dfc4d23a5eb7f8371de79eba5501.tar.bz2 volse-hubzilla-f66f0e398be5dfc4d23a5eb7f8371de79eba5501.zip |
missing argument name
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Daemon/Channel_purge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Channel_purge.php b/Zotlabs/Daemon/Channel_purge.php index bb4fc3866..7286a791a 100644 --- a/Zotlabs/Daemon/Channel_purge.php +++ b/Zotlabs/Daemon/Channel_purge.php @@ -24,7 +24,7 @@ class Channel_purge { ); if ($r) { foreach ($r as $rv) { - drop_item($rv['id'], $channel_id); + drop_item($rv['id'], uid: $channel_id); } } } while ($r); |