[feature/request-class] Fix missing include in database_update

install/database_update.php was missing the include for the class
loader.

PHPBB3-9716
This commit is contained in:
Igor Wiedler 2010-10-05 22:53:06 +02:00
parent 684914e635
commit 30b57332e3

View file

@ -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);