1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00

Fix for minor cosmetic bug # 519992

git-svn-id: file:///svn/phpbb/trunk@2195 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech 2002-02-19 16:06:25 +00:00
parent b81b6f606f
commit 1bbf53c482

View File

@ -920,10 +920,10 @@ else if( $group_id )
"L_NO_MEMBERS" => $lang['No_group_members'])
);
}
$current_page = ( !$members_count ) ? '1' : ceil( $members_count / $board_config['topics_per_page'] );
$template->assign_vars(array(
"PAGINATION" => generate_pagination("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id", $members_count, $board_config['topics_per_page'], $start),
"PAGE_NUMBER" => sprintf($lang['Page_of'], ( floor( $start / $board_config['topics_per_page'] ) + 1 ), ceil( $members_count / $board_config['topics_per_page'] )),
"PAGE_NUMBER" => sprintf($lang['Page_of'], ( floor( $start / $board_config['topics_per_page'] ) + 1 ), $current_page ),
"L_GOTO_PAGE" => $lang['Goto_page'])
);