diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-17 16:26:54 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-17 16:26:54 +0000 |
commit | 7ba89a0b2d333467c897dbde29a21cf106c845dd (patch) | |
tree | b7e3c3396fb85ee57e68e14f124b5036aed39a13 /phpBB/includes/functions_module.php | |
parent | 6a1591f2be15dd6c5e8dae036bd77e7a86b50ae2 (diff) | |
download | forums-7ba89a0b2d333467c897dbde29a21cf106c845dd.tar forums-7ba89a0b2d333467c897dbde29a21cf106c845dd.tar.gz forums-7ba89a0b2d333467c897dbde29a21cf106c845dd.tar.bz2 forums-7ba89a0b2d333467c897dbde29a21cf106c845dd.tar.xz forums-7ba89a0b2d333467c897dbde29a21cf106c845dd.zip |
fixing bug #1860
git-svn-id: file:///svn/phpbb/trunk@5920 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_module.php')
-rw-r--r-- | phpBB/includes/functions_module.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php index 9df7a53e08..942c542846 100644 --- a/phpBB/includes/functions_module.php +++ b/phpBB/includes/functions_module.php @@ -52,7 +52,7 @@ class p_master $this->p_class = str_replace(array('.', '/', '\\'), '', basename($p_class)); // Get cached modules - if (!($this->module_cache = $cache->get('_modules_' . $this->p_class))) + if (($this->module_cache = $cache->get('_modules_' . $this->p_class)) === false) { // Get modules $sql = 'SELECT * |