diff options
author | till <till@php.net> | 2007-08-29 02:32:17 +0000 |
---|---|---|
committer | till <till@php.net> | 2007-08-29 02:32:17 +0000 |
commit | e3001d49db14ec6c9388b129b5efc70c878dc839 (patch) | |
tree | 48c3c41c563d344b14eaf8f006816a54302e8d20 /program | |
parent | f09bca308e00502cbf62e4345efbfb6ec771420e (diff) |
# xhtml fix (#1484493)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcmail_template.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail_template.inc b/program/include/rcmail_template.inc index 1c40c0e96..a3937c8d6 100644 --- a/program/include/rcmail_template.inc +++ b/program/include/rcmail_template.inc @@ -647,7 +647,7 @@ class rcmail_template extends rcube_html_page $attrib['value'] = $attrib['label']; $attrib_str = create_attrib_string($attrib, array('type', 'value', 'onclick', 'id', 'class', 'style')); - $out = sprintf('<input%s disabled />', $attrib_str); + $out = sprintf('<input%s disabled="disabled" />', $attrib_str); } // generate html code for button |