summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 07a03db4b..a3b3a32b9 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -697,7 +697,7 @@ function system_init() {
/**
* Implementation of MODULE_preprocess_HOOK().
*/
-function system_preprocess_page() {
+function system_preprocess_page(&$variables) {
// Get the major version
list($version,) = explode('.', VERSION);
@@ -706,6 +706,8 @@ function system_preprocess_page() {
// Emit the HTTP Header too
theme('meta_generator_header', $version);
+
+ $variables['head'] = drupal_get_html_head();
}
/**