diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-06-14 15:03:52 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-06-14 15:03:52 +0000 |
commit | 6813967ae1024d386c6f829256a66f9391791dda (patch) | |
tree | 388382dc11f437491eb43a4707b029759691903f /phpBB/viewonline.php | |
parent | 9693f31404037cce3067f249d1cbbb93ef705cab (diff) | |
download | forums-6813967ae1024d386c6f829256a66f9391791dda.tar forums-6813967ae1024d386c6f829256a66f9391791dda.tar.gz forums-6813967ae1024d386c6f829256a66f9391791dda.tar.bz2 forums-6813967ae1024d386c6f829256a66f9391791dda.tar.xz forums-6813967ae1024d386c6f829256a66f9391791dda.zip |
Changing the behaviour of the hideonline permission.
Test the current setting before altering the memory limit during install(Bug #12195)
And another language var.
git-svn-id: file:///svn/phpbb/trunk@7755 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 4a862c4367..f655718d7e 100644 --- a/phpBB/viewonline.php +++ b/phpBB/viewonline.php @@ -139,7 +139,7 @@ while ($row = $db->sql_fetchrow($result)) $row['username'] = '<b style="color:#' . $row['user_colour'] . '">' . $row['username'] . '</b>'; } - if (!$row['user_allow_viewonline'] || !$row['session_viewonline']) + if (!$row['session_viewonline']) { $view_online = ($auth->acl_get('u_viewonline')) ? true : false; $logged_hidden_online++; |