diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-10-23 15:30:52 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-10-23 16:59:33 +0200 |
commit | 43e6b3a921d45150cd5c2a931e3e14758081f321 (patch) | |
tree | e4c18a4bcb71ad024e0b072b1dcc8ba0e0aa15ea /phpBB/includes/mcp/mcp_queue.php | |
parent | fec72c4b782cda044b9a05122530f3a32213b407 (diff) | |
download | forums-43e6b3a921d45150cd5c2a931e3e14758081f321.tar forums-43e6b3a921d45150cd5c2a931e3e14758081f321.tar.gz forums-43e6b3a921d45150cd5c2a931e3e14758081f321.tar.bz2 forums-43e6b3a921d45150cd5c2a931e3e14758081f321.tar.xz forums-43e6b3a921d45150cd5c2a931e3e14758081f321.zip |
[feature/soft-delete] Fix some more topic/post count handling
Only disapproving in queue is missing.
PHPBB3-9567
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 3d36229ee7..c954edacb2 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -895,7 +895,7 @@ class mcp_queue $disapprove_log = $disapprove_log_topics = $disapprove_log_posts = array(); $topic_replies_real = $post_disapprove_list = array(); - // Build a list of posts to be unapproved and get the related topics real replies count + // Build a list of posts to be disapproved and get the related topics real replies count foreach ($post_info as $post_id => $post_data) { $post_disapprove_list[$post_id] = $post_data['topic_id']; |