diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:07:30 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:45:30 -0500 |
commit | e870c04067772d227c4254533826f01252608f26 (patch) | |
tree | 8d45dc6fab525062f3f7adc0cc667c41c1c4c826 /phpBB/config | |
parent | f8ffe849690b2c9aa7ee446e404c52a880ad74d6 (diff) | |
download | forums-e870c04067772d227c4254533826f01252608f26.tar forums-e870c04067772d227c4254533826f01252608f26.tar.gz forums-e870c04067772d227c4254533826f01252608f26.tar.bz2 forums-e870c04067772d227c4254533826f01252608f26.tar.xz forums-e870c04067772d227c4254533826f01252608f26.zip |
[ticket/11335] (class loader) Make php_ext 'php' not '.php'
PHPBB3-11335
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/services.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index 3b60f0e83e..502a3c418f 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -36,7 +36,7 @@ services: arguments: - phpbb_ - %core.root_path%includes/ - - .%core.php_ext% + - %core.php_ext% calls: - [register, []] - [set_cache, [@cache.driver]] @@ -46,7 +46,7 @@ services: arguments: - phpbb_ext_ - %core.root_path%ext/ - - .%core.php_ext% + - %core.php_ext% calls: - [register, []] - [set_cache, [@cache.driver]] |