diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-07-05 11:45:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-07-05 11:45:51 +0000 |
commit | e93f8be8716fd35a9ad6fc3453548a8c9e5d32e8 (patch) | |
tree | 4617ae5665c77c07c54b1dfbc9722de0727adef5 /includes/form.inc | |
parent | 59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94 (diff) | |
download | brdo-e93f8be8716fd35a9ad6fc3453548a8c9e5d32e8.tar.gz brdo-e93f8be8716fd35a9ad6fc3453548a8c9e5d32e8.tar.bz2 |
- Patch #72204 by nedjo: upper-cased all TRUE/FALSE/NULL constants.
Diffstat (limited to 'includes/form.inc')
-rw-r--r-- | includes/form.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/form.inc b/includes/form.inc index cd2e5b9eb..80f53726c 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -576,7 +576,7 @@ function _form_sort($a, $b) { /** * Retrieve the default properties for the defined element type. */ -function _element_info($type, $refresh = null) { +function _element_info($type, $refresh = NULL) { static $cache; $basic_defaults = array( @@ -1054,7 +1054,7 @@ function theme_form($element) { */ function theme_textarea($element) { $class = array('form-textarea'); - if ($element['#resizable'] !== false) { + if ($element['#resizable'] !== FALSE) { drupal_add_js('misc/textarea.js'); $class[] = 'resizable'; } |