diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-15 17:10:39 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-15 17:10:39 +0000 |
commit | 6c0f8eba1c55b01e8dc3122f67cda34308ba94a2 (patch) | |
tree | e036f2d12a2575241f0a46f095bfa6d4bc5b66dd /modules/system/system.module | |
parent | 60f14083f4ba53ecfbf741d34b6a76e9722c5287 (diff) | |
download | brdo-6c0f8eba1c55b01e8dc3122f67cda34308ba94a2.tar.gz brdo-6c0f8eba1c55b01e8dc3122f67cda34308ba94a2.tar.bz2 |
#469242 by tic2000, Pasqualle, pwolanin, Nick Lewis, moshe weitzman, Rob Loach,
and alexanderpas: page.tpl.php has now been split into html.tpl.php
(for <html>, <head>, and <body>) and page.tpl.php (for page content).
This now provides consistency for granular theming of renderable output in all
template files.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 4e844bf65..5204141c0 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -291,6 +291,7 @@ function system_element_info() { $types['page'] = array( '#show_messages' => TRUE, '#theme' => 'page', + '#theme_wrappers' => array('html'), ); $types['list'] = array( '#title' => '', |