From: hickert Date: Fri, 24 Nov 2006 07:53:19 +0000 (+0000) Subject: Fixed problem with ' " in title or value of checkboxes or regexes X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d5e3e1e9f91a2d9e7ee609c1ea648e30efe6d5a3;p=gosa.git 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 --- 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{ - + ";