diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-12-15 22:47:16 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-12-15 22:47:16 +0000 |
commit | b6dba6fa8e10ccd2ac5b9d440d7fc30d20fe37a8 (patch) | |
tree | f3b4a0479f5e9054c46ddf78b42a3412f5732f84 /includes | |
parent | ff8dab60953278a47dab04feb72a0b66b0d84e33 (diff) | |
download | brdo-b6dba6fa8e10ccd2ac5b9d440d7fc30d20fe37a8.tar.gz brdo-b6dba6fa8e10ccd2ac5b9d440d7fc30d20fe37a8.tar.bz2 |
- Patch #40486 by chx/netbjarne: duplicate form id's breaks html validation.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/form.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/form.inc b/includes/form.inc index 3af3d1375..05515fe13 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -669,7 +669,7 @@ function theme_button($element) { * A themed HTML string representing the hidden form field. */ function theme_hidden($element) { - return '<input type="hidden" name="'. $element['#name'] . '" id="' . $element['#id'] . '" value="'. check_plain($element['#value']) ."\" " . drupal_attributes($element['#attributes']) ." />\n"; + return '<input type="hidden" name="'. $element['#name'] . '" value="'. check_plain($element['#value']) ."\" " . drupal_attributes($element['#attributes']) ." />\n"; } /** |