Closed (fixed)
Project:
Sky
Version:
6.x-3.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Jun 2009 at 09:22 UTC
Updated:
21 Jun 2009 at 16:29 UTC
If you check the disable breadcrumbs setting in the theme settings page it is ignored.
You can tell this because the separator is always selectable even if you have checked disable breadcrumbs.
I'm not sure if the following is correct but changing use of the theme_get_setting call to use the settings value passed in seems to work for me.
// $breadcrumbs_status = theme_get_setting('sky_breadcrumbs') ? TRUE : FALSE;
$breadcrumbs_status = $settings['sky_breadcrumbs'] ? TRUE : FALSE;
Comments
Comment #1
jacineThanks for reporting this. Committed ;)
Comment #2
jacine