Merge "htmlform: Fix double escaping in Label div"
This commit is contained in:
commit
0dffe07c6e
1 changed files with 1 additions and 1 deletions
|
|
@ -827,7 +827,7 @@ abstract class HTMLFormField {
|
|||
// <label class="cdx-label__label" for="ID">
|
||||
Html::rawElement( 'label', [ 'class' => 'cdx-label__label' ] + $labelFor,
|
||||
// <span class="cdx-label__label__text">
|
||||
Html::element( 'span', [ 'class' => 'cdx-label__label__text' ],
|
||||
Html::rawElement( 'span', [ 'class' => 'cdx-label__label__text' ],
|
||||
$labelValue
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue