aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/extension/manager.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/extension/manager.php')
-rw-r--r--phpBB/includes/extension/manager.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/extension/manager.php b/phpBB/includes/extension/manager.php
index a1863040d0..e1e7571573 100644
--- a/phpBB/includes/extension/manager.php
+++ b/phpBB/includes/extension/manager.php
@@ -45,7 +45,9 @@ class phpbb_extension_manager
$this->phpEx = $phpEx;
$this->extension_table = $extension_table;
- if (false === ($this->extensions = $this->cache->get('_extensions')))
+ $this->extensions = $this->cache->get('_extensions');
+
+ if ($this->extensions === false)
{
$this->load_extensions();
}