diff options
author | thomascube <thomas@roundcube.net> | 2007-09-09 17:45:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-09-09 17:45:24 +0000 |
commit | bd4209e20979f43ccacae81ef5ce4adc80018ee2 (patch) | |
tree | 029a33be7fedf2576efca21325da4b506e31e18e /program/include/rcube_html.inc | |
parent | e64fe07c472c9ddf38b9da2271c7bc26c5473008 (diff) |
Ensure XHTML validation
Diffstat (limited to 'program/include/rcube_html.inc')
-rw-r--r-- | program/include/rcube_html.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/include/rcube_html.inc b/program/include/rcube_html.inc index 5ebfa3256..a31594a56 100644 --- a/program/include/rcube_html.inc +++ b/program/include/rcube_html.inc @@ -297,14 +297,14 @@ class rcube_form_element $value = Q($value, 'strict', FALSE); // attributes with no value - if (in_array($key, array('checked', 'multiple', 'disabled', 'selected'))) + if (in_array($key, array('checked', 'multiple', 'disabled', 'selected', 'nowrap'))) { if ($value) - $attrib_arr[] = $key; + $attrib_arr[] = sprintf('%s="%s"', $this->_conv_case($key, 'attrib'), $key); } // don't convert size of value attribute else if ($key=='value') - $attrib_arr[] = sprintf('%s="%s"', $this->_conv_case($key, 'attrib'), $value, 'value'); + $attrib_arr[] = sprintf('%s="%s"', $this->_conv_case($key, 'attrib'), $value); // regular tag attributes else @@ -647,7 +647,7 @@ class select extends rcube_form_element $selected = ((isset($option['value']) && in_array($option['value'], $select, TRUE)) || (in_array($option['text'], $select, TRUE))) ? - $this->_conv_case(' selected', 'attrib') : ''; + $this->_conv_case(' selected="selected"', 'attrib') : ''; $options_str .= sprintf("<%s%s%s>%s</%s>\n", $this->_conv_case('option', 'tag'), |