fixed label for required multi-values

This commit is contained in:
Roland Gruber 2017-05-29 19:00:32 +02:00
parent 06136f1d5f
commit 8cc6564540
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}