I have created a module but the page structure is not picked up by the breadcrumb so I would expect this to be
home > personal > contact form
and what I get is
home > contact form
it is like the structure is ignore, what do I need to do to get this picked up by the breadcrumbs?
$items['personal/contact-form'] = array(
'title' => 'Contact Us',
'page callback' => 'drupal_get_form',
'page arguments' => array('contactform_enquiries'),
'access callback' => TRUE,
'type' => MENU_NORMAL_ITEM
);