Dyl963 Posted December 10, 2011 Report Posted December 10, 2011 I noticed that there is a file called 'layout_dark' in the (admin/lib) folder, anyone know how to get this working other than the default skin? I have this in the 'index.php' define('ADMIN_PANEL', true);include '../core/codon.config.php'; if(!Auth::LoggedIn()) { Debug::showCritical('Please login first'); die(); } if(!PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { Debug::showCritical('Unauthorized access'); die(); } $BaseTemplate = new TemplateSet; $tplname = Config::Get('ADMIN_SKIN'); if($tplname == '') $tplname = 'layout_dark'; Dylan Quote
Tom Posted December 10, 2011 Report Posted December 10, 2011 Easiest way is to rename the 'layout' folder to 'layout_light' and then 'layout_dark' to 'layout' Quote
Dyl963 Posted December 10, 2011 Author Report Posted December 10, 2011 Easiest way is to rename the 'layout' folder to 'layout_light' and then 'layout_dark' to 'layout' Thanks!! Works awesome!! Dylan Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.