diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-12 12:48:20 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-12 12:48:20 +0000 |
| commit | 8a3df3f032059464ebaab2dde26ab0d24b186572 (patch) | |
| tree | a0f7e36bc53789d65e5ed11f18c694ad72c3287c | |
| parent | c60bdc74a451dca9849ce13cb5922b463007f11b (diff) | |
- Make buttons self-closing (#1488424)
git-svn-id: https://svn.roundcube.net/trunk@6071 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_template.php b/roundcubemail/program/include/rcube_template.php index bec84c97a..b2bdda488 100644 --- a/roundcubemail/program/include/rcube_template.php +++ b/roundcubemail/program/include/rcube_template.php @@ -999,7 +999,7 @@ class rcube_template extends rcube_html_page $attrib['disabled'] = 'disabled'; } - $out = html::tag('input', $attrib, '', array('type', 'value', 'onclick', 'id', 'class', 'style', 'tabindex', 'disabled')); + $out = html::tag('input', $attrib, null, array('type', 'value', 'onclick', 'id', 'class', 'style', 'tabindex', 'disabled')); } // generate html code for button |
