diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-11-25 12:48:48 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-25 12:48:48 +0100 |
commit | f4576c969ab3c3619564e8be7b71547049846bd5 (patch) | |
tree | dc045187b5fd89c1b9757136664408fecbcd9361 /phpBB/phpbb/routing | |
parent | fd94027b40184b4c9eae10c6e5c1f8bee2c2a974 (diff) | |
download | forums-f4576c969ab3c3619564e8be7b71547049846bd5.tar forums-f4576c969ab3c3619564e8be7b71547049846bd5.tar.gz forums-f4576c969ab3c3619564e8be7b71547049846bd5.tar.bz2 forums-f4576c969ab3c3619564e8be7b71547049846bd5.tar.xz forums-f4576c969ab3c3619564e8be7b71547049846bd5.zip |
[ticket/13372] Fix require_once CS
PHPBB3-13372
Diffstat (limited to 'phpBB/phpbb/routing')
-rw-r--r-- | phpBB/phpbb/routing/router.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/routing/router.php b/phpBB/phpbb/routing/router.php index c9c50534a2..40a829b73f 100644 --- a/phpBB/phpbb/routing/router.php +++ b/phpBB/phpbb/routing/router.php @@ -255,7 +255,7 @@ class router implements RouterInterface $cache->write($dumper->dump($options), $this->get_routes()->getResources()); } - require_once $cache; + require_once($cache); $this->matcher = new \phpbb_url_matcher($this->context); } @@ -303,7 +303,7 @@ class router implements RouterInterface $cache->write($dumper->dump($options), $this->get_routes()->getResources()); } - require_once $cache; + require_once($cache); $this->generator = new \phpbb_url_generator($this->context); } |