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/download/file.php | |
| 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/download/file.php')
| -rw-r--r-- | phpBB/download/file.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index 91c05586a5..ac37737184 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -50,9 +50,9 @@ if (isset($_GET['avatar'])) require($phpbb_root_path . 'includes/utf/utf_tools.' . $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 |
