From ce64332e7a9bf2468eabdb4b789270aebb3e7dc7 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 12 Apr 2012 08:48:20 -0400 Subject: [PATCH] - Make buttons self-closing (#1488424) --- program/include/rcube_template.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index bec84c9..b2bdda4 100644 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -999,7 +999,7 @@ $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 -- Gitblit v1.9.1