diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-01 20:39:55 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-01 20:39:55 +0000 |
commit | a0b83c11b358d8f9ca3f91e49f2be51a9eda082e (patch) | |
tree | 6e36d335b54c5aa01f77f9501907960bb01baeaa /themes/garland | |
parent | 18b7e4254bde471e4c2060a430b3f219f917c4b9 (diff) | |
download | brdo-a0b83c11b358d8f9ca3f91e49f2be51a9eda082e.tar.gz brdo-a0b83c11b358d8f9ca3f91e49f2be51a9eda082e.tar.bz2 |
#497948 by roychri and Rob Loach: Fixed terribly broken Color module (with tests so we don't do it again ;)).
Diffstat (limited to 'themes/garland')
-rw-r--r-- | themes/garland/template.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/garland/template.php b/themes/garland/template.php index 5b9790ce0..9b92aa7b2 100644 --- a/themes/garland/template.php +++ b/themes/garland/template.php @@ -65,6 +65,12 @@ function garland_preprocess_page(&$vars) { } $vars['site_html'] = implode(' ', $site_fields); +} + +/** + * Override process function used to alter variables as late as possible. + */ +function garland_process_page(&$vars) { // Hook into color.module if (module_exists('color')) { _color_page_alter($vars); |