diff options
author | Mario <mario@mariovavti.com> | 2025-04-15 14:21:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-04-15 14:21:20 +0000 |
commit | f6b91f97bf41ad707916dda365a9dc28ce871a0b (patch) | |
tree | 1b5cb4da84afeb7c8e9edb98c2060d294f8fcca9 /Zotlabs/Module | |
parent | d82e7c9f6cf1019c1d8a55e89ae953f714387476 (diff) | |
download | volse-hubzilla-f6b91f97bf41ad707916dda365a9dc28ce871a0b.tar.gz volse-hubzilla-f6b91f97bf41ad707916dda365a9dc28ce871a0b.tar.bz2 volse-hubzilla-f6b91f97bf41ad707916dda365a9dc28ce871a0b.zip |
this should be info instead of notice
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Moderate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Moderate.php b/Zotlabs/Module/Moderate.php index 2103684ab..1d8f65348 100644 --- a/Zotlabs/Module/Moderate.php +++ b/Zotlabs/Module/Moderate.php @@ -67,7 +67,7 @@ class Moderate extends \Zotlabs\Web\Controller { $item['item_blocked'] = 0; item_update_parent_commented($item); - notice( t('Item approved') . EOL); + info(t('Item approved') . EOL); } elseif($action === 'drop') { // TODO: not implemented @@ -75,7 +75,7 @@ class Moderate extends \Zotlabs\Web\Controller { // Activity::send_rejection_activity(App::get_channel(), $item['author_xchan'], $item); drop_item($post_id); - notice( t('Item deleted') . EOL); + info(t('Item deleted') . EOL); } // refetch the item after changes have been made |