mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Fix r10041 - Bug #50765
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10109 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e0bf824501
commit
239438a6c9
1 changed files with 2 additions and 2 deletions
|
@ -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 . "&$u_sort_param$log_operation_param$keywords_param", $log_count, $config['topics_per_page'], $start, true),
|
||||
'PAGINATION' => generate_pagination($this->u_action . "&$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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue