diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:37:05 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:45:53 -0500 |
commit | e5d032ca2112ba2c6156718b3fe42128e444a6fd (patch) | |
tree | 5a2dfe8ccf8e7b86826f93c95076d5a89f7829a4 /phpBB/install | |
parent | df518ac131bb022aa14c207e0c1408751dd9e1ef (diff) | |
download | forums-e5d032ca2112ba2c6156718b3fe42128e444a6fd.tar forums-e5d032ca2112ba2c6156718b3fe42128e444a6fd.tar.gz forums-e5d032ca2112ba2c6156718b3fe42128e444a6fd.tar.bz2 forums-e5d032ca2112ba2c6156718b3fe42128e444a6fd.tar.xz forums-e5d032ca2112ba2c6156718b3fe42128e444a6fd.zip |
[ticket/11335] (more class loader) Make php_ext 'php' not '.php'
PHPBB3-11335
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 2 | ||||
-rw-r--r-- | phpBB/install/index.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 867235e607..c2b31b4ecd 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -95,7 +95,7 @@ require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler'); // Setup class loader first -$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", ".$phpEx"); +$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", "$phpEx"); $phpbb_class_loader->register(); // Set up container (must be done here because extensions table may not exist) diff --git a/phpBB/install/index.php b/phpBB/install/index.php index a03fda6395..4009db4794 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -90,9 +90,9 @@ include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); require($phpbb_root_path . 'includes/functions_install.' . $phpEx); // Setup class loader first -$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", ".$phpEx"); +$phpbb_class_loader = new phpbb_class_loader('phpbb_', "{$phpbb_root_path}includes/", "$phpEx"); $phpbb_class_loader->register(); -$phpbb_class_loader_ext = new phpbb_class_loader('phpbb_ext_', "{$phpbb_root_path}ext/", ".$phpEx"); +$phpbb_class_loader_ext = new phpbb_class_loader('phpbb_ext_', "{$phpbb_root_path}ext/", "$phpEx"); $phpbb_class_loader_ext->register(); // Set up container |