diff options
| author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-03 00:41:56 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-03 00:41:56 +0300 |
| commit | 57065095d570f0ff5976470ce81a4b216fe5f98e (patch) | |
| tree | b5d1134cd5045f9200acfca0987861c34d914e05 /phpBB/includes/user.php | |
| parent | 8363d3276522dedc55b20f63b53de116002a28eb (diff) | |
| download | forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar.gz forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar.bz2 forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar.xz forums-57065095d570f0ff5976470ce81a4b216fe5f98e.zip | |
[ticket/10754] Changing $style to $phpbb_style
Renaming global variable $style to $phpbb_style
PHPBB3-10754
Diffstat (limited to 'phpBB/includes/user.php')
| -rw-r--r-- | phpBB/includes/user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/user.php b/phpBB/includes/user.php index 1676f82ccb..ce9c804f23 100644 --- a/phpBB/includes/user.php +++ b/phpBB/includes/user.php @@ -72,7 +72,7 @@ class phpbb_user extends phpbb_session */ function setup($lang_set = false, $style_id = false) { - global $db, $style, $template, $config, $auth, $phpEx, $phpbb_root_path, $cache; + global $db, $phpbb_style, $template, $config, $auth, $phpEx, $phpbb_root_path, $cache; if ($this->data['user_id'] != ANONYMOUS) { @@ -206,7 +206,7 @@ class phpbb_user extends phpbb_session } } - $style->set_style(); + $phpbb_style->set_style(); $this->img_lang = $this->lang_name; |
