do not escape label

This commit is contained in:
Roland Gruber 2017-11-25 17:05:54 +01:00
parent 0952a461cc
commit c688217165
1 changed files with 1 additions and 1 deletions

View File

@ -4030,7 +4030,7 @@ class htmlResponsiveInputCheckbox extends htmlInputCheckbox {
*/
function __construct($name, $checked, $label, $helpID = null, $longLabel = false) {
parent::__construct($name, $checked);
$this->label = htmlspecialchars($label);
$this->label = $label;
$this->helpID = $helpID;
$this->longLabel = $longLabel;
}