#897768 by pwolanin: Fixed Breadcrumb can show only one trail item, making it look like an action.

merge-requests/26/head
Angie Byron 2010-08-31 15:04:09 +00:00
parent d073fa2a0b
commit 17a2c2f300
1 changed files with 1 additions and 6 deletions

View File

@ -344,17 +344,12 @@ function template_process_overlay(&$variables) {
/**
* Implements hook_preprocess_page().
*
* Display breadcrumbs correctly inside the overlay.
* Hide tabs inside the overlay.
*
* @see overlay_get_mode()
*/
function overlay_preprocess_page(&$variables) {
if (overlay_get_mode() == 'child') {
// Remove 'Home' from the breadcrumbs.
$overlay_breadcrumb = drupal_get_breadcrumb();
array_shift($overlay_breadcrumb);
$variables['breadcrumb'] = theme('breadcrumb', array('breadcrumb' => $overlay_breadcrumb));
unset($variables['tabs'][0]);
}
}