diff options
author | Igor Wiedler <igor@wiedler.ch> | 2010-10-05 22:53:06 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2010-10-05 22:53:06 +0200 |
commit | 30b57332e3b0a07294bacba8df26b309818662f9 (patch) | |
tree | bf254e21540c09054d14548618e3525b7a9c1503 | |
parent | 684914e6350fff9d3b89953b313b82db247cd1f8 (diff) | |
download | forums-30b57332e3b0a07294bacba8df26b309818662f9.tar forums-30b57332e3b0a07294bacba8df26b309818662f9.tar.gz forums-30b57332e3b0a07294bacba8df26b309818662f9.tar.bz2 forums-30b57332e3b0a07294bacba8df26b309818662f9.tar.xz forums-30b57332e3b0a07294bacba8df26b309818662f9.zip |
[feature/request-class] Fix missing include in database_update
install/database_update.php was missing the include for the class
loader.
PHPBB3-9716
-rw-r--r-- | phpBB/install/database_update.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 69f5f58563..211e194c73 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -60,6 +60,7 @@ if (!empty($load_extensions) && function_exists('dl')) } // Include files +require($phpbb_root_path . 'includes/class_loader.' . $phpEx); require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx); require($phpbb_root_path . 'includes/cache.' . $phpEx); require($phpbb_root_path . 'includes/template.' . $phpEx); |