From 30b57332e3b0a07294bacba8df26b309818662f9 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Tue, 5 Oct 2010 22:53:06 +0200 Subject: [PATCH] [feature/request-class] Fix missing include in database_update install/database_update.php was missing the include for the class loader. PHPBB3-9716 --- phpBB/install/database_update.php | 1 + 1 file changed, 1 insertion(+) 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);