From 8d4563210b4165c6755fe5c018428890777efd36 Mon Sep 17 00:00:00 2001 From: cajus Date: Wed, 23 Apr 2008 07:04:52 +0000 Subject: [PATCH] Moved from htmlentities to htmlspecialchars to display "umlauts" git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10623 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_MultiSelectWindow.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gosa-core/include/class_MultiSelectWindow.inc b/gosa-core/include/class_MultiSelectWindow.inc index 45891d625..798aafb5c 100644 --- a/gosa-core/include/class_MultiSelectWindow.inc +++ b/gosa-core/include/class_MultiSelectWindow.inc @@ -402,9 +402,9 @@ class MultiSelectWindow{ /* Check if box is checked */ if($box['default'] == true){ - $boxes .=" ".$box['string']."
"; + $boxes .=" ".$box['string']."
"; }else{ - $boxes .=" ".$box['string']."
"; + $boxes .=" ".$box['string']."
"; } } $smarty->assign("CheckBoxes", $boxes); @@ -422,7 +422,7 @@ class MultiSelectWindow{ + value=\"".htmlspecialchars($regex['value'])."\" title=\"".htmlspecialchars($regex['string'])."\"> "; -- 2.30.2