aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/app.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-11-15 14:48:45 -0500
committerDavid King <imkingdavid@gmail.com>2012-11-16 17:05:46 -0500
commit8e480a87253fd2e42af3fc4daaed2f49b9ae65c5 (patch)
treed9f87d5d27f116c8d9cae51b93226475bd5f96d0 /phpBB/app.php
parentdb1d49d559a337f7266a9e9f0cfaf3eb025b0ed1 (diff)
downloadforums-8e480a87253fd2e42af3fc4daaed2f49b9ae65c5.tar
forums-8e480a87253fd2e42af3fc4daaed2f49b9ae65c5.tar.gz
forums-8e480a87253fd2e42af3fc4daaed2f49b9ae65c5.tar.bz2
forums-8e480a87253fd2e42af3fc4daaed2f49b9ae65c5.tar.xz
forums-8e480a87253fd2e42af3fc4daaed2f49b9ae65c5.zip
[feature/controller] Move include to app.php
PHPBB3-10864
Diffstat (limited to 'phpBB/app.php')
-rw-r--r--phpBB/app.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/app.php b/phpBB/app.php
index 9ff9069104..a2dbb1ae5b 100644
--- a/phpBB/app.php
+++ b/phpBB/app.php
@@ -17,6 +17,7 @@ define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
+include($this->root_path . 'includes/functions_url_matcher' . $this->php_ext);
// Start session management
$user->session_begin();