diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-16 05:11:01 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-16 05:11:01 +0000 |
commit | 2d1ef531dcca714d60bd2f61927d85a9b77d4957 (patch) | |
tree | 16cac6e98db5bc1d43b7f0a667eceb7417a39b31 /modules/system/system.module | |
parent | 9db02aba50f447ee0f29e03d359c25b008a839ff (diff) | |
download | brdo-2d1ef531dcca714d60bd2f61927d85a9b77d4957.tar.gz brdo-2d1ef531dcca714d60bd2f61927d85a9b77d4957.tar.bz2 |
#601806 by sun, effulgentsia, and Damien Tournoud: drupal_render() should not set default element properties that make no sense.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 228ffd050..7385b8d93 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -488,7 +488,7 @@ function system_element_info() { $types['token'] = array( '#input' => TRUE, - '#theme' => array('hidden'), + '#theme' => 'hidden', ); return $types; |