mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-18 22:58:10 +01:00
[ticket/12167] Allow users to change style via style parameter by default
This change will enable users that don't have the a_styles permission to preview styles using the style parameter. Using this, they will be able to use extensions that are or incorporate stylechangers. PHPBB3-12167
This commit is contained in:
parent
32bc5d72e4
commit
8a96e0bc52
@ -183,7 +183,7 @@ class user extends \phpbb\session
|
||||
unset($lang_set_ext);
|
||||
|
||||
$style_request = request_var('style', 0);
|
||||
if ($style_request && $auth->acl_get('a_styles') && !defined('ADMIN_START'))
|
||||
if ($style_request && (!$config['override_user_style'] || $auth->acl_get('a_styles')) && !defined('ADMIN_START'))
|
||||
{
|
||||
global $SID, $_EXTRA_URL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user