From 1911285b77fa791ca202f810e4ba40c822aa5ae9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 11 Jul 2013 22:44:06 -0400 Subject: [PATCH] [ticket/9657] Notifications do not require emails or jabber anymore PHPBB3-9657 --- phpBB/includes/mcp/mcp_queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index ac3391c294..8a9390212f 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -692,7 +692,7 @@ class mcp_queue { $show_notify = false; - if ($action == 'approve' && ($config['email_enable'] || $config['jab_enable'])) + if ($action == 'approve') { foreach ($post_info as $post_data) { @@ -840,7 +840,7 @@ class mcp_queue { $show_notify = false; - if ($action == 'approve' && ($config['email_enable'] || $config['jab_enable'])) + if ($action == 'approve') { foreach ($topic_info as $topic_data) {