aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-09-05 12:06:12 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-09-05 12:06:12 +0000
commit239438a6c9e3404035ab983e806f235f12a937b0 (patch)
treecfb221ec17ef04d7cbcb3a957433aca09c7cf55d /phpBB/includes
parente0bf8245014ae38841e6edc6e1f43f1ed4070502 (diff)
downloadforums-239438a6c9e3404035ab983e806f235f12a937b0.tar
forums-239438a6c9e3404035ab983e806f235f12a937b0.tar.gz
forums-239438a6c9e3404035ab983e806f235f12a937b0.tar.bz2
forums-239438a6c9e3404035ab983e806f235f12a937b0.tar.xz
forums-239438a6c9e3404035ab983e806f235f12a937b0.zip
Fix r10041 - Bug #50765
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10109 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/mcp/mcp_logs.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_logs.php b/phpBB/includes/mcp/mcp_logs.php
index 782fba7a50..429e19b668 100644
--- a/phpBB/includes/mcp/mcp_logs.php
+++ b/phpBB/includes/mcp/mcp_logs.php
@@ -175,7 +175,7 @@ class mcp_logs
$template->assign_vars(array(
'PAGE_NUMBER' => on_page($log_count, $config['topics_per_page'], $start),
'TOTAL' => ($log_count == 1) ? $user->lang['TOTAL_LOG'] : sprintf($user->lang['TOTAL_LOGS'], $log_count),
- 'PAGINATION' => generate_pagination($this->u_action . "&amp;$u_sort_param$log_operation_param$keywords_param", $log_count, $config['topics_per_page'], $start, true),
+ 'PAGINATION' => generate_pagination($this->u_action . "&amp;$u_sort_param$keywords_param", $log_count, $config['topics_per_page'], $start, true),
'L_TITLE' => $user->lang['MCP_LOGS'],
@@ -192,7 +192,7 @@ class mcp_logs
foreach ($log_data as $row)
{
$data = array();
-
+
$checks = array('viewtopic', 'viewforum');
foreach ($checks as $check)
{