aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-04-24 17:19:48 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-04-24 17:45:41 -0500
commitdf70b6ebe6590f3b8de32f6f4c6dbdcce1e2db34 (patch)
treeec72b0751474af0156e96c0e1a2704df51750a4b
parentfe89e566869e91a582129b1174c1831b8ee2f865 (diff)
downloadforums-df70b6ebe6590f3b8de32f6f4c6dbdcce1e2db34.tar
forums-df70b6ebe6590f3b8de32f6f4c6dbdcce1e2db34.tar.gz
forums-df70b6ebe6590f3b8de32f6f4c6dbdcce1e2db34.tar.bz2
forums-df70b6ebe6590f3b8de32f6f4c6dbdcce1e2db34.tar.xz
forums-df70b6ebe6590f3b8de32f6f4c6dbdcce1e2db34.zip
[ticket/11335] (kernel request subscriber) Make php_ext 'php' not '.php'
PHPBB3-11335
-rw-r--r--phpBB/config/services.yml2
-rw-r--r--phpBB/includes/functions_url_matcher.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml
index dc293c83a2..7923c94a3f 100644
--- a/phpBB/config/services.yml
+++ b/phpBB/config/services.yml
@@ -181,7 +181,7 @@ services:
arguments:
- @ext.finder
- %core.root_path%
- - .%core.php_ext%
+ - %core.php_ext%
tags:
- { name: kernel.event_subscriber }
diff --git a/phpBB/includes/functions_url_matcher.php b/phpBB/includes/functions_url_matcher.php
index 7280cb74eb..a89ab7b126 100644
--- a/phpBB/includes/functions_url_matcher.php
+++ b/phpBB/includes/functions_url_matcher.php
@@ -60,7 +60,7 @@ function phpbb_create_dumped_url_matcher(phpbb_extension_finder $finder, $root_p
'class' => 'phpbb_url_matcher',
));
- file_put_contents($root_path . 'cache/url_matcher' . $php_ext, $cached_url_matcher_dump);
+ file_put_contents($root_path . 'cache/url_matcher.' . $php_ext, $cached_url_matcher_dump);
}
/**
@@ -87,7 +87,7 @@ function phpbb_create_url_matcher(phpbb_extension_finder $finder, RequestContext
*/
function phpbb_load_url_matcher(RequestContext $context, $root_path, $php_ext)
{
- require($root_path . 'cache/url_matcher' . $php_ext);
+ require($root_path . 'cache/url_matcher.' . $php_ext);
return new phpbb_url_matcher($context);
}
@@ -102,5 +102,5 @@ function phpbb_load_url_matcher(RequestContext $context, $root_path, $php_ext)
*/
function phpbb_url_matcher_dumped($root_path, $php_ext)
{
- return file_exists($root_path . 'cache/url_matcher' . $php_ext);
+ return file_exists($root_path . 'cache/url_matcher.' . $php_ext);
}