diff options
author | David King <imkingdavid@gmail.com> | 2012-11-15 15:05:52 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-11-16 17:05:48 -0500 |
commit | db071d68541d132f5b06da652a2214b664552b1e (patch) | |
tree | 5b75b39d24c56d227fc1da4972cfb38d50b9f624 /phpBB/app.php | |
parent | 91ce6e8b16abb831e1e18b73cf857a257a59e432 (diff) | |
download | forums-db071d68541d132f5b06da652a2214b664552b1e.tar forums-db071d68541d132f5b06da652a2214b664552b1e.tar.gz forums-db071d68541d132f5b06da652a2214b664552b1e.tar.bz2 forums-db071d68541d132f5b06da652a2214b664552b1e.tar.xz forums-db071d68541d132f5b06da652a2214b664552b1e.zip |
[feature/controller] Fix use of $this in global scope
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 a2dbb1ae5b..a7d645cb09 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($this->root_path . 'includes/functions_url_matcher' . $this->php_ext); +include($phpbb_root_path . 'includes/functions_url_matcher' . $phpEx); // Start session management $user->session_begin(); |