From d5e3e1e9f91a2d9e7ee609c1ea648e30efe6d5a3 Mon Sep 17 00:00:00 2001 From: hickert Date: Fri, 24 Nov 2006 07:53:19 +0000 Subject: [PATCH] Fixed problem with ' " in title or value of checkboxes or regexes git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5216 594d385d-05f5-0310-b6e9-bd551577e9d8 --- include/class_MultiSelectWindow.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/class_MultiSelectWindow.inc b/include/class_MultiSelectWindow.inc index bbba65eee..cf90a8d01 100644 --- a/include/class_MultiSelectWindow.inc +++ b/include/class_MultiSelectWindow.inc @@ -273,9 +273,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); @@ -292,8 +292,8 @@ class MultiSelectWindow{ - + "; -- 2.30.2