diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-10-15 20:51:31 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-10-15 20:51:31 +0200 |
commit | 3773cbdf858dfacca7cd8916306db2f02136c771 (patch) | |
tree | 4cd3b184bcc312e973869785085974dec40fd655 /phpBB/mcp.php | |
parent | [feature/soft-delete] Add module for soft deleted topics (diff) | |
download | phpbb-3773cbdf858dfacca7cd8916306db2f02136c771.tar.gz phpbb-3773cbdf858dfacca7cd8916306db2f02136c771.tar.bz2 phpbb-3773cbdf858dfacca7cd8916306db2f02136c771.zip |
[feature/soft-delete] Fix displaying of details module
PHPBB3-9567
Diffstat (limited to 'phpBB/mcp.php')
-rw-r--r-- | phpBB/mcp.php | 2 |
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); } |