hook_menu should return an array of items, not just one item as currently
return array(array(
'path' => 'favicon.ico',
'callback' => 'favicon_shortcut_icon',
'access' => TRUE,
'type' => MENU_CALLBACK,
);
or the usual
$items = array();
$items[] = array(...);
return $items;
Comments
Comment #1
robloachThanks!
http://drupal.org/cvs?commit=133146
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.