From 3fd283e29fe0c433d219ef47be2dc3435faad608 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Mon, 15 Aug 2016 02:32:36 +0200 Subject: [PATCH] [HTMLUtils] Fix form input attribute assignment - Don't assign attributes to all options of a selection - Assign attributes to checkboxes --- lib/HTMLUtils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/HTMLUtils.php b/lib/HTMLUtils.php index 674d067f..1a947715 100644 --- a/lib/HTMLUtils.php +++ b/lib/HTMLUtils.php @@ -96,12 +96,12 @@ CARD; $card .= '
'; } else if($inputEntry['type'] == 'checkbox') { - $card .= '
' . PHP_EOL; + $card .= '
' . PHP_EOL; } }