summaryrefslogtreecommitdiff
path: root/includes/form.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/form.inc')
-rw-r--r--includes/form.inc4
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';
}