Does this template file do anything? I think I must be missing something.

What I'd like to do is throw a string replacement at the breadcrumb on the popup. I didn't see any change when testing this right in the tpl file inside the module (thinking I'd do this properly elsewhere later). Then I tried drastic measures to see if anything was updating anywhere, but saw nothing.

Comments

merlinofchaos’s picture

Status: Active » Fixed

Yes, this template is used to power the popup page.

  $popup = !empty($_GET['popup']) && user_access('view advanced help popup');
  if ($popup) {
    $GLOBALS['devel_shutdown'] = FALSE; // Prevent devel module from spewing.
    module_invoke('admin_menu', 'suppress'); // Suppress admin_menu.
    drupal_set_breadcrumb(array_reverse($breadcrumb));
    print theme('advanced_help_popup', $output);
    return;
  }

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.