Hi am receiving the following error when trying to change the breadcrumbs on the homepage:
Notice: Undefined offset: 1 in mysubtheme_breadcrumb() (line 25 of /Applications/MAMP/htdocs/mysite/sites/all/themes/mysubtheme/template.php).
This is the code I have in the template.php:
function mysubtheme_breadcrumb($variables) { $breadcrumb = $variables['breadcrumb']; if ($breadcrumb[1] == 'Publications') { $links[0] = l(t('Home'), '<front>'); $links[1] = l(t('Meet the Faculty'), '/meet-the-faculty'); $links[2] = ('Publications'); drupal_set_breadcrumb($links); } }