aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/style/style.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-07-21 16:19:01 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-07-21 16:19:01 +0200
commit85bcdbad468cd255a02d6c48b2dcd1d128978eed (patch)
tree143499b5650281e60cd56cb46f32d052eb8e1fbe /phpBB/includes/style/style.php
parentf7f78adeb910c84e86414dd6f6470631f5a47d8f (diff)
downloadforums-85bcdbad468cd255a02d6c48b2dcd1d128978eed.tar
forums-85bcdbad468cd255a02d6c48b2dcd1d128978eed.tar.gz
forums-85bcdbad468cd255a02d6c48b2dcd1d128978eed.tar.bz2
forums-85bcdbad468cd255a02d6c48b2dcd1d128978eed.tar.xz
forums-85bcdbad468cd255a02d6c48b2dcd1d128978eed.zip
[ticket/11012] Normalize $phpEx member vars to $php_ext
PHPBB3-11012
Diffstat (limited to 'phpBB/includes/style/style.php')
-rw-r--r--phpBB/includes/style/style.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/style/style.php b/phpBB/includes/style/style.php
index 22e0f1d67a..6b7cd31cb3 100644
--- a/phpBB/includes/style/style.php
+++ b/phpBB/includes/style/style.php
@@ -38,7 +38,7 @@ class phpbb_style
* PHP file extension
* @var string
*/
- private $phpEx;
+ private $php_ext;
/**
* phpBB config instance
@@ -73,10 +73,10 @@ class phpbb_style
* @param phpbb_style_path_provider $provider style path provider
* @param phpbb_template $template template
*/
- public function __construct($phpbb_root_path, $phpEx, $config, $user, phpbb_style_resource_locator $locator, phpbb_style_path_provider_interface $provider, phpbb_template $template)
+ public function __construct($phpbb_root_path, $php_ext, $config, $user, phpbb_style_resource_locator $locator, phpbb_style_path_provider_interface $provider, phpbb_template $template)
{
$this->phpbb_root_path = $phpbb_root_path;
- $this->phpEx = $phpEx;
+ $this->php_ext = $php_ext;
$this->config = $config;
$this->user = $user;
$this->locator = $locator;