P Paul B XenForo moderator Staff member Mar 9, 2013 #1 As title. Even with all permissions available, the Smilies icon is not present, despite the Smilies link being available in the sidebar and the ability to manage smilies. Super Administrator view: Administrator view:
As title. Even with all permissions available, the Smilies icon is not present, despite the Smilies link being available in the sidebar and the ability to manage smilies. Super Administrator view: Administrator view:
Chris D XenForo developer Staff member Mar 9, 2013 #3 Nicely spotted. There is a mistake in XenForo_ControllerAdmin_Home: PHP: 'canManageBbCode' => $visitor->hasAdminPermission('bbcode'), The correct Admin Permission has an ID of "bbCodeSmilie". The above line needs to be changed to: PHP: 'canManageBbCode' => $visitor->hasAdminPermission('bbCodeSmilie'),
Nicely spotted. There is a mistake in XenForo_ControllerAdmin_Home: PHP: 'canManageBbCode' => $visitor->hasAdminPermission('bbcode'), The correct Admin Permission has an ID of "bbCodeSmilie". The above line needs to be changed to: PHP: 'canManageBbCode' => $visitor->hasAdminPermission('bbCodeSmilie'),
Mike XenForo developer Staff member Mar 12, 2013 #4 Fixed, and good catch from Chris in tracking it down.