Code

Added scalix and nagios accounts.
[gosa.git] / gosa-core / setup / class_setupStep_Config3.inc
index 7712c705506bc98628cf67cefc6454438d673fe9..a9b942fde4114c3d610a0408d4e0f62e921a53d4 100644 (file)
@@ -87,13 +87,13 @@ class Step_Config3 extends setup_step
     $this->optional['sudoou'] = preg_replace("/%BASE%/",$cv['base'],$this->optional['sudoou']);
     $smarty = get_smarty();
     $smarty->assign("bool",array(FALSE => _("No"), TRUE => _("Yes")));
-    $smarty->assign("uniq_identifiers",array( "entryCNS" => "entryCSN",
+    $smarty->assign("uniq_identifiers",array( "entryCSN" => "entryCSN",
                                               "contextCSN"=>"contextCSN" ));
 
     
-    $smarty->assign("optional", $this->optional);
+    $smarty->assign("optional", reverse_html_entities($this->optional));
     foreach($this->attributes as $attr){
-      $smarty->assign($attr,xmlentities($this->$attr));
+      $smarty->assign($attr,reverse_html_entities($this->$attr));
     }
     $smarty->assign("login_attributes",$this->login_attributes);
     return($smarty -> fetch (get_template_path("../setup/setup_config3.tpl")));