1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 02:36:38 +02:00

Added row numbers to memberslist (to check out how you're ranked with # of posts ;)

git-svn-id: file:///svn/phpbb/trunk@1896 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt
2002-01-16 19:08:10 +00:00
parent 5d70014c83
commit abb97b4eb8
2 changed files with 6 additions and 3 deletions

View File

@@ -238,6 +238,7 @@ for($i = 0; $i < count($members); $i++)
$template->assign_block_vars("memberrow", array(
"U_VIEWPROFILE" => append_sid("profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . "=" . $user_id),
"ROW_NR" => $i + $HTTP_GET_VARS['start'] + 1,
"ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
"USERNAME" => $username,
@@ -292,4 +293,4 @@ $template->pparse("body");
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
?>