diff options
author | Rubén Calvo <rubencm@gmail.com> | 2017-04-28 22:41:07 +0200 |
---|---|---|
committer | Rubén Calvo <rubencm@gmail.com> | 2017-08-28 18:33:38 +0200 |
commit | 4719f94cecd8a3f585c9ca1c75336aa109849844 (patch) | |
tree | e7e30e0d9d42455f3688700da21f81149cdf48bb /phpBB/phpbb/user.php | |
parent | 48a3bd1a9e1fe9c6a761b43a1058b4d3c1b6641b (diff) | |
download | forums-4719f94cecd8a3f585c9ca1c75336aa109849844.tar forums-4719f94cecd8a3f585c9ca1c75336aa109849844.tar.gz forums-4719f94cecd8a3f585c9ca1c75336aa109849844.tar.bz2 forums-4719f94cecd8a3f585c9ca1c75336aa109849844.tar.xz forums-4719f94cecd8a3f585c9ca1c75336aa109849844.zip |
[ticket/15201] Remove wrong user style check
PHPBB3-15201
Diffstat (limited to 'phpBB/phpbb/user.php')
-rw-r--r-- | phpBB/phpbb/user.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/phpBB/phpbb/user.php b/phpBB/phpbb/user.php index d4097f53ee..5899dff2f5 100644 --- a/phpBB/phpbb/user.php +++ b/phpBB/phpbb/user.php @@ -278,24 +278,6 @@ class user extends \phpbb\session $db->sql_freeresult($result); } - // User has wrong style - if (!$this->style && $style_id == $this->data['user_style']) - { - $style_id = $this->data['user_style'] = $config['default_style']; - - $sql = 'UPDATE ' . USERS_TABLE . " - SET user_style = $style_id - WHERE user_id = {$this->data['user_id']}"; - $db->sql_query($sql); - - $sql = 'SELECT * - FROM ' . STYLES_TABLE . " s - WHERE s.style_id = $style_id"; - $result = $db->sql_query($sql, 3600); - $this->style = $db->sql_fetchrow($result); - $db->sql_freeresult($result); - } - if (!$this->style) { trigger_error('NO_STYLE_DATA', E_USER_ERROR); |