diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-04-10 15:51:09 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-04-10 15:51:09 +0000 |
commit | 5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db (patch) | |
tree | 9c4fc2a1396d1b259dfe37478a1a30cf306f4977 /phpBB | |
parent | 44b1572527e92eb7363e1b0ec63e9a18bc5d4d61 (diff) | |
download | forums-5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db.tar forums-5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db.tar.gz forums-5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db.tar.bz2 forums-5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db.tar.xz forums-5a13f125a61601f2e47b32a4d94ef9c1e0b9e3db.zip |
Remove caching. Ideally, this owuld depend on the current load
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8501 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 1baa7abd9a..b6237020f1 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3182,7 +3182,7 @@ function obtain_users_online($forum_id = 0) WHERE s.session_time >= ' . ($time - ((int) ($time % 30))) . $reading_sql . ' AND s.session_user_id <> ' . ANONYMOUS; - $result = $db->sql_query($sql, 30); + $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { |