diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-13 17:13:10 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-13 17:13:10 +0000 |
commit | 98c93d45c530013a4e08669c2787f51701017f58 (patch) | |
tree | 70c4229727ebe575378918d635dff15f8c4f2bc4 /phpBB/viewonline.php | |
parent | a325e482a8405a13fbea6dc3149dbf2dda704f5a (diff) | |
download | forums-98c93d45c530013a4e08669c2787f51701017f58.tar forums-98c93d45c530013a4e08669c2787f51701017f58.tar.gz forums-98c93d45c530013a4e08669c2787f51701017f58.tar.bz2 forums-98c93d45c530013a4e08669c2787f51701017f58.tar.xz forums-98c93d45c530013a4e08669c2787f51701017f58.zip |
Yet another overlooked error fixed ... strange this never showed up before ...
git-svn-id: file:///svn/phpbb/trunk@286 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewonline.php')
-rw-r--r-- | phpBB/viewonline.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php index 88e69a7837..6b8f488414 100644 --- a/phpBB/viewonline.php +++ b/phpBB/viewonline.php @@ -86,7 +86,7 @@ if($online_count) for($i = 0; $i < $online_count; $i++) { - if(!(ix % 2)) + if(!($i % 2)) { $row_color = "#".$theme['td_color1']; } |