summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-15 08:49:40 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-15 08:49:40 +0000
commit1806af909cc912e3ae688577b52a4edbcaf25678 (patch)
tree3cdf29ccf02954d55f17d79e9020360491f7b475 /modules/system/system.module
parentdd24755c39fcf6c43c31066c1028338f3129930b (diff)
downloadbrdo-1806af909cc912e3ae688577b52a4edbcaf25678.tar.gz
brdo-1806af909cc912e3ae688577b52a4edbcaf25678.tar.bz2
#275092 follow-up by Damien Tournoud: Restoring meta tag generator and fixing failing test.
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();
}
/**