- Patch #92365 by chx: Garland does not display secondary tabs when color module is off.

5.x
Dries Buytaert 2006-11-07 12:09:09 +00:00
parent 57688517f8
commit 9e7f41cd91
2 changed files with 2 additions and 3 deletions

View File

@ -49,8 +49,6 @@ function _color_page_alter(&$vars) {
if ($logo && $vars['logo'] && preg_match('!'. $theme_key .'/logo.png$!', $vars['logo'])) {
$vars['logo'] = $logo;
}
return $vars;
}
/**

View File

@ -64,8 +64,9 @@ function _phptemplate_variables($hook, $vars) {
// Hook into color.module
if (module_exists('color')) {
return _color_page_alter($vars);
_color_page_alter($vars);
}
return $vars;
}
return array();
}