diff options
| author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-02 11:50:13 +0300 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-06-11 19:56:50 -0400 |
| commit | 71ca9b4fe69dea8150a5d3c6f30dd177c488ff2b (patch) | |
| tree | 212afadc0d7cd715a97fba1a29094067c1eb6765 /phpBB/includes/style | |
| parent | 33b72ec62bd8b6e6c890e4c474d28389f048632a (diff) | |
| download | forums-71ca9b4fe69dea8150a5d3c6f30dd177c488ff2b.tar forums-71ca9b4fe69dea8150a5d3c6f30dd177c488ff2b.tar.gz forums-71ca9b4fe69dea8150a5d3c6f30dd177c488ff2b.tar.bz2 forums-71ca9b4fe69dea8150a5d3c6f30dd177c488ff2b.tar.xz forums-71ca9b4fe69dea8150a5d3c6f30dd177c488ff2b.zip | |
[ticket/10743] Renaming user->theme
Renaming user->theme to user->style
PHPBB3-10743
Diffstat (limited to 'phpBB/includes/style')
| -rw-r--r-- | phpBB/includes/style/style.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/style/style.php b/phpBB/includes/style/style.php index 3f470015f6..8d38deb85c 100644 --- a/phpBB/includes/style/style.php +++ b/phpBB/includes/style/style.php @@ -89,8 +89,8 @@ class phpbb_style */ public function set_style() { - $style_name = $this->user->theme['style_path']; - $style_dirs = ($this->user->theme['style_parent_id']) ? array_reverse(explode('/', $this->user->theme['style_parent_tree'])) : array(); + $style_name = $this->user->style['style_path']; + $style_dirs = ($this->user->style['style_parent_id']) ? array_reverse(explode('/', $this->user->style['style_parent_tree'])) : array(); $paths = array($this->get_style_path($style_name)); foreach ($style_dirs as $dir) { |
