diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2012-05-04 20:08:42 +0100 |
---|---|---|
committer | Bruno Ais <brunoaiss@gmail.com> | 2012-05-04 20:08:42 +0100 |
commit | fce0c5d436f7a2b3b8b39128b607e0e9d81018ea (patch) | |
tree | e8b873f3199388e07b798fa1da76ab4205b00d1f /phpBB/includes/mcp/mcp_queue.php | |
parent | 417caa649a5fb87afa32a8a8f3600b591dddcce0 (diff) | |
download | forums-fce0c5d436f7a2b3b8b39128b607e0e9d81018ea.tar forums-fce0c5d436f7a2b3b8b39128b607e0e9d81018ea.tar.gz forums-fce0c5d436f7a2b3b8b39128b607e0e9d81018ea.tar.bz2 forums-fce0c5d436f7a2b3b8b39128b607e0e9d81018ea.tar.xz forums-fce0c5d436f7a2b3b8b39128b607e0e9d81018ea.zip |
[ticket/10871] Delete the unwanted implode
Deleted the implode that had no reason to be there
PHPBB3-10871
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 59fa8b7263..4d720a435c 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -268,8 +268,6 @@ class mcp_queue trigger_error('NOT_MODERATOR'); } - $forum_list = implode(', ', $forum_list); - $sql = 'SELECT SUM(forum_topics) as sum_forum_topics FROM ' . FORUMS_TABLE . ' WHERE ' . $db->sql_in_set('forum_id', $forum_list); |