aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index f9bf10da9e..e637594f5a 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -44,6 +44,17 @@ if (!defined('PHPBB_INSTALLED'))
exit;
}
+// Load Extensions
+if ( (isset($load_extensions)) && ($load_extensions != '') )
+{
+ $load_extensions = explode(',', $load_extensions);
+
+ for ($i = 0; $i < count($load_extensions); $i++)
+ {
+ @dl(trim($load_extensions[$i]));
+ }
+}
+
// Include files
require($phpbb_root_path . 'includes/acm/cache_' . $acm_type . '.'.$phpEx);
require($phpbb_root_path . 'db/' . $dbms . '.'.$phpEx);