aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/extension/controller.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-08-06 23:21:06 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-08-06 23:21:06 +0200
commitae3f86dbb076c84dbae1588deca3244a102005fd (patch)
treef902a91e852a7a1ecee9d61871c1efa36344cecb /phpBB/includes/extension/controller.php
parent8ce0a4eebd260a861d2f0055e393528a21b0bf5c (diff)
parenta35ad4e689c204c52d23c07b701433325c27b0dc (diff)
downloadforums-ae3f86dbb076c84dbae1588deca3244a102005fd.tar
forums-ae3f86dbb076c84dbae1588deca3244a102005fd.tar.gz
forums-ae3f86dbb076c84dbae1588deca3244a102005fd.tar.bz2
forums-ae3f86dbb076c84dbae1588deca3244a102005fd.tar.xz
forums-ae3f86dbb076c84dbae1588deca3244a102005fd.zip
Merge remote-tracking branch 'bantu/ticket/11041' into develop
* bantu/ticket/11041: [ticket/11041] Correctly import PHP file extension from global space.
Diffstat (limited to 'phpBB/includes/extension/controller.php')
-rw-r--r--phpBB/includes/extension/controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/extension/controller.php b/phpBB/includes/extension/controller.php
index ec051c756f..2b8c50aafb 100644
--- a/phpBB/includes/extension/controller.php
+++ b/phpBB/includes/extension/controller.php
@@ -64,14 +64,14 @@ abstract class phpbb_extension_controller implements phpbb_extension_controller_
public function __construct()
{
global $request, $db, $user, $template, $config;
- global $php_ext, $phpbb_root_path;
+ global $phpEx, $phpbb_root_path;
$this->request = $request;
$this->db = $db;
$this->user = $user;
$this->template = $template;
$this->config = $config;
- $this->php_ext = $php_ext;
+ $this->php_ext = $phpEx;
$this->phpbb_root_path = $phpbb_root_path;
}
}