aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_url_matcher.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-04-25 04:01:38 -0700
committerNils Adermann <naderman@naderman.de>2013-04-25 04:01:38 -0700
commit7b144bbff2968b8897359b7954f048ce5eb78455 (patch)
treed22e4fb4b65d84f835ec8c5573145269b7187f7d /phpBB/includes/functions_url_matcher.php
parent6d0b183553a63156cbeb4f515bbc22c728c63008 (diff)
parent9c4553c41f0e0f2c28fb95b5e56886f77cb759ba (diff)
downloadforums-7b144bbff2968b8897359b7954f048ce5eb78455.tar
forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar.gz
forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar.bz2
forums-7b144bbff2968b8897359b7954f048ce5eb78455.tar.xz
forums-7b144bbff2968b8897359b7954f048ce5eb78455.zip
Merge pull request #1369 from EXreaction/ticket/11335
Ticket/11335
Diffstat (limited to 'phpBB/includes/functions_url_matcher.php')
-rw-r--r--phpBB/includes/functions_url_matcher.php6
1 files changed, 3 insertions, 3 deletions
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);
}