Wedge
Public area => Bug reports => The Pub => Archived fixes => Topic started by: BurkeKnight on October 10th, 2014, 07:08 PM
-
Skin Selector in Main Menu under Profile.
If skin selection is turned off, this still shows.
I see why, there is nothing about the setting in the show part in the code: Subs.php
'skin' => array(
'title' => $txt['change_skin'],
'href' => 'http://wedge.org/do/skin/',
'show' => allowedTo(array('profile_extra_any', 'profile_extra_own')),
),
'',
Seems it should be something like:
'skin' => array(
'title' => $txt['change_skin'],
'href' => 'http://wedge.org/do/skin/',
'show' => allowedTo(array('profile_extra_any', 'profile_extra_own') && empty($settings['theme_allow'])),
),
'',
However, that leaves the line below it still showing.
Also, I wonder, is there any real reason to keep this in the menu?
If skin selection is enabled, then there's the drop down selector in sidebar.
-
But it's a plugin..?
-
Nope. No plugin.
Default install.
-
By default you dont have a skin selector in the sidebar.
-
Thought you did...LOL
Shows how often I leave set to let members change theme....LOL