aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-10-15 20:51:31 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-10-15 20:51:31 +0200
commit3773cbdf858dfacca7cd8916306db2f02136c771 (patch)
tree4cd3b184bcc312e973869785085974dec40fd655 /phpBB
parent33073fafbe53cb103e9e00bceb249a0879a2eb9c (diff)
downloadforums-3773cbdf858dfacca7cd8916306db2f02136c771.tar
forums-3773cbdf858dfacca7cd8916306db2f02136c771.tar.gz
forums-3773cbdf858dfacca7cd8916306db2f02136c771.tar.bz2
forums-3773cbdf858dfacca7cd8916306db2f02136c771.tar.xz
forums-3773cbdf858dfacca7cd8916306db2f02136c771.zip
[feature/soft-delete] Fix displaying of details module
PHPBB3-9567
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/mcp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/mcp.php b/phpBB/mcp.php
index 09fe70cde1..068e870126 100644
--- a/phpBB/mcp.php
+++ b/phpBB/mcp.php
@@ -199,7 +199,7 @@ if (!$post_id)
$module->set_display('warn', 'warn_post', false);
}
-if ($mode == '' || $mode == 'unapproved_topics' || $mode == 'unapproved_posts' || $mode == 'deleted_posts')
+if ($mode == '' || $mode == 'unapproved_topics' || $mode == 'unapproved_posts' || $mode == 'deleted_topics' || $mode == 'deleted_posts')
{
$module->set_display('queue', 'approve_details', false);
}