summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module8
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 56c63f198..5536cc757 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -311,12 +311,18 @@ function system_element_info() {
$types['ajax_commands'] = array(
'#ajax_commands' => array(),
);
-
$types['html_tag'] = array(
'#theme' => 'html_tag',
+ '#pre_render' => array('drupal_pre_render_conditional_comments'),
'#attributes' => array(),
'#value' => NULL,
);
+ $types['styles'] = array(
+ '#items' => array(),
+ '#pre_render' => array('drupal_pre_render_styles'),
+ '#group_callback' => 'drupal_group_css',
+ '#aggregate_callback' => 'drupal_aggregate_css',
+ );
// Input elements.
$types['submit'] = array(