diff options
author | David King <imkingdavid@gmail.com> | 2012-11-15 14:48:45 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-11-16 17:05:46 -0500 |
commit | 8e480a87253fd2e42af3fc4daaed2f49b9ae65c5 (patch) | |
tree | d9f87d5d27f116c8d9cae51b93226475bd5f96d0 /phpBB/app.php | |
parent | db1d49d559a337f7266a9e9f0cfaf3eb025b0ed1 (diff) | |
download | forums-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.php | 1 |
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(); |