1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00

[ticket/10743] Renaming user->theme

Renaming user->theme to user->style

PHPBB3-10743
This commit is contained in:
Vjacheslav Trushkin
2012-04-02 11:50:13 +03:00
committed by Oleg Pudeyev
parent 33b72ec62b
commit 71ca9b4fe6
4 changed files with 21 additions and 21 deletions

View File

@@ -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)
{