summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-30 05:52:35 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-30 05:52:35 +0000
commitcc4ce5053b797a0d5d9895de4e812e8c027f4e60 (patch)
tree36237fe84c3956651c04b427c74caa2a417f06a1 /includes
parent410fcdc718391005eb729855cceb06cde05cd758 (diff)
downloadbrdo-cc4ce5053b797a0d5d9895de4e812e8c027f4e60.tar.gz
brdo-cc4ce5053b797a0d5d9895de4e812e8c027f4e60.tar.bz2
#895896 by Jacine: Fixed Textarea element should not have a value attribute.
Diffstat (limited to 'includes')
-rw-r--r--includes/form.inc1
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/form.inc b/includes/form.inc
index 3aaeec99a..c8d0ab7b5 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -3197,7 +3197,6 @@ function theme_textarea($variables) {
$element = $variables['element'];
$element['#attributes']['name'] = $element['#name'];
$element['#attributes']['id'] = $element['#id'];
- $element['#attributes']['value'] = $element['#value'];
$element['#attributes']['cols'] = $element['#cols'];
$element['#attributes']['rows'] = $element['#rows'];
_form_set_class($element, array('form-textarea'));