summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-22 15:06:46 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-22 15:06:46 +0000
commit0439e3495c5dbd029bc579ddaaeb33dff3691244 (patch)
tree83b06b49f0d9a6356777ef7048c157469b154609 /includes/common.inc
parent01979d430ab72a2bb904523ed08335884137b70f (diff)
downloadbrdo-0439e3495c5dbd029bc579ddaaeb33dff3691244.tar.gz
brdo-0439e3495c5dbd029bc579ddaaeb33dff3691244.tar.bz2
- Fixed password field.
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index b3fba67b9..674419619 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -734,7 +734,7 @@ function form_radio($title, $name, $value = 1, $checked = 0, $description = NULL
}
function form_checkbox($title, $name, $value = 1, $checked = 0, $description = NULL, $attributes = NULL) {
- return form_hidden($name, 0) . theme("form_element", 0, "<input type=\"checkbox\" class=\"form-checkbox\" name=\"edit[$name]\" id=\"$name\" value=\"". $value ."\"". ($checked ? " checked=\"checked\"" : "") . drupal_attributes($attributes) ." /> $title", $description, $name);
+ return form_hidden($name, 0) . theme("form_element", NULL, "<input type=\"checkbox\" class=\"form-checkbox\" name=\"edit[$name]\" id=\"$name\" value=\"". $value ."\"". ($checked ? " checked=\"checked\"" : "") . drupal_attributes($attributes) ." /> $title", $description, $name);
}
function form_textfield($title, $name, $value, $size, $maxlength, $description = NULL, $attributes = NULL) {