aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/app.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-11-16 09:20:15 -0500
committerDavid King <imkingdavid@gmail.com>2012-11-16 17:05:53 -0500
commitc9588572c9f40223de3445a211ca85b18f5294a4 (patch)
tree2de54e9c0c3da47712f0a43dd4fed8eeaf331d4d /phpBB/app.php
parenta87a5dd566bd4b9481cdca86fa6f4bc3363d58de (diff)
downloadforums-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.php2
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();