diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-04-24 20:39:24 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-04-24 20:39:24 -0500 |
commit | 9c4553c41f0e0f2c28fb95b5e56886f77cb759ba (patch) | |
tree | f0040dcd85cef6bab9b28f52ab599052f5ee00d9 /phpBB/install | |
parent | f49993766e2bcf4efe346e29972f3721b1b1438a (diff) | |
download | forums-9c4553c41f0e0f2c28fb95b5e56886f77cb759ba.tar forums-9c4553c41f0e0f2c28fb95b5e56886f77cb759ba.tar.gz forums-9c4553c41f0e0f2c28fb95b5e56886f77cb759ba.tar.bz2 forums-9c4553c41f0e0f2c28fb95b5e56886f77cb759ba.tar.xz forums-9c4553c41f0e0f2c28fb95b5e56886f77cb759ba.zip |
[ticket/11335] Replace "$phpEx" with $phpEx
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 c2b31b4ecd..5ea950bfad 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 4009db4794..57bcdaffc1 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 |