From: hickert Date: Mon, 3 Sep 2007 07:02:06 +0000 (+0000) Subject: Send feedback without encoded strings X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fdbf6cb6d85d39e901cf406459ba3c83c423d2da;p=gosa.git Send feedback without encoded strings git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7188 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/setup/class_setupStep_Feedback.inc b/setup/class_setupStep_Feedback.inc index fd6e394c5..fbcfb4c97 100644 --- a/setup/class_setupStep_Feedback.inc +++ b/setup/class_setupStep_Feedback.inc @@ -239,7 +239,7 @@ class Step_Feedback extends setup_step }else{ $str .= "\nGet started: FALSE"; } - $str .= "\nProblems : ".base64_encode($this->problems_encountered); + $str .= "\nProblems : ".($this->problems_encountered); if($this->first_use){ $str .= "\nFirst use: TRUE"; @@ -253,7 +253,7 @@ class Step_Feedback extends setup_step $str .="\nPHP_Version: ".$this->php_version; $str .="\nLDAP Server: ".$this->ldap_server; $str .="\nObject count: ".$this->object_count; - $str .="\nMissing features: ".base64_encode($this->want_to_see_next); + $str .="\nMissing features: ".($this->want_to_see_next); } $str .= "\n\nFeatures used";