|
From: Bart v. B. <ba...@us...> - 2002-01-16 19:08:16
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv20588
Modified Files:
memberlist.php
Log Message:
Added row numbers to memberslist (to check out how you're ranked with # of posts ;)
Index: memberlist.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/memberlist.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** memberlist.php 2002/01/16 18:26:19 1.31
--- memberlist.php 2002/01/16 19:08:10 1.32
***************
*** 239,242 ****
--- 239,243 ----
"U_VIEWPROFILE" => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $user_id),
+ "ROW_NR" => $i + $HTTP_GET_VARS['start'] + 1,
"ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
***************
*** 293,295 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 294,296 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|