diff options
| author | Tom Beddard <subblue@users.sourceforge.net> | 2005-12-30 12:54:07 +0000 |
|---|---|---|
| committer | Tom Beddard <subblue@users.sourceforge.net> | 2005-12-30 12:54:07 +0000 |
| commit | 0ef491f3b982046bcce43a3d40845005456198f2 (patch) | |
| tree | 5ec5cbcc5924cb1f2e3ff3bf81eecf1486891255 /phpBB/memberlist.php | |
| parent | e5951ad72ae24d73e3d8ef838f84421a00c908c1 (diff) | |
| download | forums-0ef491f3b982046bcce43a3d40845005456198f2.tar forums-0ef491f3b982046bcce43a3d40845005456198f2.tar.gz forums-0ef491f3b982046bcce43a3d40845005456198f2.tar.bz2 forums-0ef491f3b982046bcce43a3d40845005456198f2.tar.xz forums-0ef491f3b982046bcce43a3d40845005456198f2.zip | |
Changed ONLINE_STATUS flag to S_ONLINE for consistancy
git-svn-id: file:///svn/phpbb/trunk@5406 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 38d87bf253..ffd53937e0 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1225,7 +1225,7 @@ function show_profile($data) 'WARNINGS' => isset($data['user_warnings']) ? $data['user_warnings'] : 0, 'ONLINE_IMG' => ($online) ? $user->img('btn_online', 'ONLINE') : $user->img('btn_offline', 'OFFLINE'), - 'ONLINE_STATUS' => ($online) ? true : false, + 'S_ONLINE' => ($online) ? true : false, 'RANK_IMG' => $rank_img, 'RANK_IMG_SRC' => $rank_img_src, 'ICQ_STATUS_IMG'=> (!empty($data['user_icq'])) ? '<img src="http://web.icq.com/whitepages/online?icq=' . $data['user_icq'] . '&img=5" width="18" height="18" border="0" />' : '', |
