diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-16 19:18:45 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-16 19:18:45 +0000 |
| commit | 671200fa93518e1d686cb9c9d2d327ead7c5a040 (patch) | |
| tree | 40413f42236e5497deeeed65318bfb132953d886 /phpBB/memberlist.php | |
| parent | abb97b4eb8b923f4e9a844c46d1ae53988aa11b1 (diff) | |
| download | forums-671200fa93518e1d686cb9c9d2d327ead7c5a040.tar forums-671200fa93518e1d686cb9c9d2d327ead7c5a040.tar.gz forums-671200fa93518e1d686cb9c9d2d327ead7c5a040.tar.bz2 forums-671200fa93518e1d686cb9c9d2d327ead7c5a040.tar.xz forums-671200fa93518e1d686cb9c9d2d327ead7c5a040.zip | |
Gave the row number thing a more useful name ...
git-svn-id: file:///svn/phpbb/trunk@1897 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/memberlist.php')
| -rw-r--r-- | phpBB/memberlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index f18bcb4a89..f874a1e3ee 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -238,7 +238,7 @@ for($i = 0; $i < count($members); $i++) $template->assign_block_vars("memberrow", array( "U_VIEWPROFILE" => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $user_id), - "ROW_NR" => $i + $HTTP_GET_VARS['start'] + 1, + "ROW_NUMBER" => $i + ( $HTTP_GET_VARS['start'] + 1 ), "ROW_COLOR" => "#" . $row_color, "ROW_CLASS" => $row_class, "USERNAME" => $username, |
