diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-17 12:18:42 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-17 12:18:42 +0000 |
commit | 056d24a0bd8b3d4998fcbca51cffc525778b2d38 (patch) | |
tree | 51241c856a8e2458f5be18bfabb5039a5684c62a | |
parent | 9b751a330dc1f6dc07f8728feaee31454ebac6d7 (diff) | |
download | forums-056d24a0bd8b3d4998fcbca51cffc525778b2d38.tar forums-056d24a0bd8b3d4998fcbca51cffc525778b2d38.tar.gz forums-056d24a0bd8b3d4998fcbca51cffc525778b2d38.tar.bz2 forums-056d24a0bd8b3d4998fcbca51cffc525778b2d38.tar.xz forums-056d24a0bd8b3d4998fcbca51cffc525778b2d38.zip |
forgot something
git-svn-id: file:///svn/phpbb/trunk@8240 89ea8834-ac86-4346-8a33-228a782c2dd0
-rwxr-xr-x | phpBB/includes/acp/acp_inactive.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php index b483d102df..10c5a15392 100755 --- a/phpBB/includes/acp/acp_inactive.php +++ b/phpBB/includes/acp/acp_inactive.php @@ -143,7 +143,7 @@ class acp_inactive 'action' => $action, 'mark' => $mark, 'submit' => 1, - 'start' => ($start - sizeof($user_affected) < 0) ? 0 : $start - sizeof($user_affected), + 'start' => $start, ); confirm_box(false, $user->lang['CONFIRM_OPERATION'], build_hidden_fields($s_hidden_fields)); } @@ -217,7 +217,7 @@ class acp_inactive $inactive = array(); $inactive_count = 0; - view_inactive_users($inactive, $inactive_count, $config['topics_per_page'], $start, $sql_where, $sql_sort); + $start = view_inactive_users($inactive, $inactive_count, $config['topics_per_page'], $start, $sql_where, $sql_sort); foreach ($inactive as $row) { @@ -248,7 +248,7 @@ class acp_inactive 'S_ON_PAGE' => on_page($inactive_count, $config['topics_per_page'], $start), 'PAGINATION' => generate_pagination($this->u_action . "&$u_sort_param", $inactive_count, $config['topics_per_page'], $start, true), - 'U_ACTION' => $this->u_action, + 'U_ACTION' => $this->u_action . '&start=' . $start, )); $this->tpl_name = 'acp_inactive'; |