aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-09-01 16:38:47 -0400
committerDavid King <imkingdavid@gmail.com>2012-09-01 16:38:47 -0400
commit7bf598954c452448c2807428f6517cd75d910f92 (patch)
tree1a8ba768a01b36e8fb1159b996383d935fb8b352 /phpBB/install/database_update.php
parent43190ebecaeadbc8738da9dcb33b9163652fb9f3 (diff)
parent81f7f28cc33d896973c2912097103ea84fa14114 (diff)
downloadforums-7bf598954c452448c2807428f6517cd75d910f92.tar
forums-7bf598954c452448c2807428f6517cd75d910f92.tar.gz
forums-7bf598954c452448c2807428f6517cd75d910f92.tar.bz2
forums-7bf598954c452448c2807428f6517cd75d910f92.tar.xz
forums-7bf598954c452448c2807428f6517cd75d910f92.zip
Merge remote-tracking branch 'unknownbliss/ticket/10631' into develop
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 502b3bb1a4..0b470ced26 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -683,12 +683,12 @@ function _write_result($no_updates, $errored, $error_ary)
function _add_modules($modules_to_install)
{
- global $phpbb_root_path, $phpEx, $db, $phpbb_extension_manager;
+ global $phpbb_root_path, $phpEx, $db, $phpbb_extension_manager, $config;
// modules require an extension manager
if (empty($phpbb_extension_manager))
{
- $phpbb_extension_manager = new phpbb_extension_manager($db, EXT_TABLE, $phpbb_root_path, ".$phpEx");
+ $phpbb_extension_manager = new phpbb_extension_manager($db, $config, EXT_TABLE, $phpbb_root_path, ".$phpEx");
}
include_once($phpbb_root_path . 'includes/acp/acp_modules.' . $phpEx);