diff options
author | David King <imkingdavid@gmail.com> | 2012-11-16 09:20:15 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-11-16 17:05:53 -0500 |
commit | c9588572c9f40223de3445a211ca85b18f5294a4 (patch) | |
tree | 2de54e9c0c3da47712f0a43dd4fed8eeaf331d4d /phpBB/app.php | |
parent | a87a5dd566bd4b9481cdca86fa6f4bc3363d58de (diff) | |
download | forums-c9588572c9f40223de3445a211ca85b18f5294a4.tar forums-c9588572c9f40223de3445a211ca85b18f5294a4.tar.gz forums-c9588572c9f40223de3445a211ca85b18f5294a4.tar.bz2 forums-c9588572c9f40223de3445a211ca85b18f5294a4.tar.xz forums-c9588572c9f40223de3445a211ca85b18f5294a4.zip |
[feature/controller] Add period before $phpEx
PHPBB3-10864
Diffstat (limited to 'phpBB/app.php')
-rw-r--r-- | phpBB/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/app.php b/phpBB/app.php index a7d645cb09..f1023ff1b5 100644 --- a/phpBB/app.php +++ b/phpBB/app.php @@ -17,7 +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($phpbb_root_path . 'includes/functions_url_matcher' . $phpEx); +include($phpbb_root_path . 'includes/functions_url_matcher.' . $phpEx); // Start session management $user->session_begin(); |