From c6882171655c1a7d0b941ffa07a442fad364e8a6 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 25 Nov 2017 17:05:54 +0100 Subject: [PATCH] do not escape label --- lam/lib/html.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/html.inc b/lam/lib/html.inc index 880cf23c..11a33cd5 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -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; }