For some reason the bread crumbs for the case tracker was displayed even when not on the case tracker page, even when logged out. The bread crumbs was even showed on the first page.

I commented out line 279 in casetracker.module and that helped, donät know if it was the right solution though,-)

//         drupal_set_breadcrumb(array(l(t('Home'), NULL), l(t('case tracker projects'), 'casetracker/projects'), l($project->title, 'node/'.$node->pid), l(t('all cases'), 'casetracker/cases/'.$node->pid.'/all')));

Comments

peppelorum’s picture

Solved it properly by changing line 277 to

 if (in_array($node->type, variable_get('casetracker_case_node_types', array('casetracker_case')), TRUE) && !drupal_is_front_page()) {
morbus iff’s picture

Status: Active » Fixed

Fixed in DRUPAL-5 and will show up in next release.

Anonymous’s picture

Status: Fixed » Closed (fixed)