diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-16 23:03:00 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-16 23:03:00 -0500 |
commit | 661dd09d6f44b46e5a30b37bb3425058f055ea01 (patch) | |
tree | 26390f533d57b15745c03414c72393659f88dbea /phpBB/includes/functions_admin.php | |
parent | a4ec7e2aea8a47fff9d7effa76a3d07a2dd6a305 (diff) | |
download | forums-661dd09d6f44b46e5a30b37bb3425058f055ea01.tar forums-661dd09d6f44b46e5a30b37bb3425058f055ea01.tar.gz forums-661dd09d6f44b46e5a30b37bb3425058f055ea01.tar.bz2 forums-661dd09d6f44b46e5a30b37bb3425058f055ea01.tar.xz forums-661dd09d6f44b46e5a30b37bb3425058f055ea01.zip |
[ticket/11103] Bug fix
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 55e539cb37..27128aafac 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -718,7 +718,7 @@ function delete_topics($where_type, $where_ids, $auto_sync = true, $post_count_s // Delete notifications $phpbb_notifications = $phpbb_container->get('notifications'); - $phpbb_notifications->delete_notifications(array('topic', 'approve_topic', 'topic_in_queue')), $topic_ids); + $phpbb_notifications->delete_notifications(array('topic', 'approve_topic', 'topic_in_queue'), $topic_ids); return $return; } |