X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fsetup%2Fclass_setupStep_Feedback.inc;h=2395fd5908bf143e44893737210c8ac0e9f2773f;hb=9b10111d38b0589067bb74136863655b770a0ca2;hp=0863e1fd0d413b977184bcc3a195dd5a0d2c16bc;hpb=24187cd7f31d0214f0e97b5f79b3026a67119dd5;p=gosa.git diff --git a/gosa-core/setup/class_setupStep_Feedback.inc b/gosa-core/setup/class_setupStep_Feedback.inc index 0863e1fd0..2395fd590 100644 --- a/gosa-core/setup/class_setupStep_Feedback.inc +++ b/gosa-core/setup/class_setupStep_Feedback.inc @@ -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", "*"); return($smarty->fetch(get_template_path("setup_feedback.tpl",TRUE,dirname(__FILE__)))); }