From e7140d658d6bd37023eca51d6d01207a34fe2d0e Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 27 Mar 2006 12:48:29 +0000 Subject: - add missing pagination to queue/reports - hide the close button on closed reports page - fix a JS bug in mcp/acp ban view git-svn-id: file:///svn/phpbb/trunk@5733 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/mcp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/mcp.php') diff --git a/phpBB/mcp.php b/phpBB/mcp.php index 46a263518e..0ef50378c9 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -477,7 +477,7 @@ function mcp_sorting($mode, &$sort_days, &$sort_key, &$sort_dir, &$sort_by_sql, 'S_SELECT_SORT_DAYS'=> $s_limit_days) ); - if (($sort_days && $mode != 'viewlogs') || $mode == 'reports' || $where_sql != 'WHERE') + if (($sort_days && $mode != 'viewlogs') || in_array($mode, array('reports', 'unapproved_topics', 'unapproved_posts')) || $where_sql != 'WHERE') { $result = $db->sql_query($sql); $total = ($row = $db->sql_fetchrow($result)) ? $row['total'] : 0; -- cgit v1.2.1