Code

Updated password methods.
[gosa.git] / gosa-core / setup / class_setupStep_Feedback.inc
index 0863e1fd0d413b977184bcc3a195dd5a0d2c16bc..2395fd5908bf143e44893737210c8ac0e9f2773f 100644 (file)
@@ -23,7 +23,7 @@
 class Step_Feedback  extends setup_step
 {
   var $languages      = array();
-  var $header_image   = "images/welcome.png";
+  var $header_image   = "images/setup/welcome.png";
 
   var $organization       = "";
   var $eMail              = "";
@@ -81,10 +81,9 @@ class Step_Feedback  extends setup_step
         FALSE,
         $cv['tls']);
 
+    $this->object_count= "";
     $ldap = new ldapMultiplexer($ldap_l);
     $ldap->cd($cv['base']);
-    $ldap->search("(objectClass=*)",array("dn"));
-    $this->object_count=$ldap->count();
 
     /* Preselect used features */
     $oc = $ldap->get_objectclasses();
@@ -110,7 +109,7 @@ class Step_Feedback  extends setup_step
 
   function update_strings()
   {
-    $this->s_title      = _("Notification and feedback");
+    $this->s_title      = _("Feedback");
     $this->s_info       = _("Get notifications or send feedback");
     $this->s_title_long = _("Notification and feedback");
   }
@@ -164,11 +163,11 @@ class Step_Feedback  extends setup_step
     $smarty = get_smarty();
 
     foreach($this->attributes as $attr){
-      $smarty->assign($attr, xmlentities($this->$attr));
+      $smarty->assign($attr,   reverse_html_entities($this->$attr));
     }
     $smarty->assign("years",$years);
     $smarty->assign("features_used",$this->features_used);
-    $smarty->assign("additional_info",$additional_info);
+    $smarty->assign("additional_info", reverse_html_entities($additional_info));
     $smarty->assign ("must", "<font class=\"must\">*</font>");
     return($smarty->fetch(get_template_path("setup_feedback.tpl",TRUE,dirname(__FILE__))));
   }