diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-07-29 11:22:40 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-07-29 11:22:40 +0000 |
commit | bb3c365f45314bbc34f3abfd626797d5ed496852 (patch) | |
tree | 5f9b0a3bb873bb97e888990c8c0975f02157cdeb /phpBB/includes/auth.php | |
parent | cc79d31345a5087279aceed461289a838c438262 (diff) | |
download | forums-bb3c365f45314bbc34f3abfd626797d5ed496852.tar forums-bb3c365f45314bbc34f3abfd626797d5ed496852.tar.gz forums-bb3c365f45314bbc34f3abfd626797d5ed496852.tar.bz2 forums-bb3c365f45314bbc34f3abfd626797d5ed496852.tar.xz forums-bb3c365f45314bbc34f3abfd626797d5ed496852.zip |
#13863 (oops)
git-svn-id: file:///svn/phpbb/trunk@7977 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/auth.php')
-rw-r--r-- | phpBB/includes/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php index 389fe99bdb..08c8c89caa 100644 --- a/phpBB/includes/auth.php +++ b/phpBB/includes/auth.php @@ -349,7 +349,7 @@ class auth // Since this function is not called that often (we are caching the data) we check for this inconsistency. $sql = 'SELECT forum_id FROM ' . FORUMS_TABLE . ' - WHERE ' . $db->sql_in_set('forum_id', array_keys($hold_ary)); + WHERE ' . $db->sql_in_set('forum_id', array_keys($hold_ary),false, true); $result = $db->sql_query($sql); $forum_ids = (isset($hold_ary[0])) ? array(0) : array(); |