From 8cc65645400e38d6ad6e1dfc2df361263cb75d57 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 29 May 2017 19:00:32 +0200 Subject: [PATCH] fixed label for required multi-values --- lam/lib/baseModule.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/baseModule.inc b/lam/lib/baseModule.inc index 613513a7..ad4fbb7f 100644 --- a/lam/lib/baseModule.inc +++ b/lam/lib/baseModule.inc @@ -1302,7 +1302,7 @@ abstract class baseModule { natcasesort($values); $values = array_values($values); if ($label !== null) { - $labelTextOut = new htmlOutputText($label); + $labelTextOut = new htmlOutputText($label, true, $required); $labelTextOut->alignment = htmlElement::ALIGN_TOP; $container->addElement($labelTextOut); }