From e3001d49db14ec6c9388b129b5efc70c878dc839 Mon Sep 17 00:00:00 2001
From: till <till@php.net>
Date: Tue, 28 Aug 2007 22:32:17 -0400
Subject: [PATCH] # xhtml fix (#1484493)

---
 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 1c40c0e..a3937c8 100644
--- a/program/include/rcmail_template.inc
+++ b/program/include/rcmail_template.inc
@@ -647,7 +647,7 @@
         $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

--
Gitblit v1.9.1