X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setupStep8.inc;h=822940453d043f7fe692f7fd8747538fdfab2050;hb=3536e72afaac8a39178a3927e34c5c47bf979a69;hp=31ff4e97e1fac5bd12cabba7357962617299a5ba;hpb=01575ee421376c7c11e6cc85a4e1a5dddb1207b8;p=gosa.git diff --git a/setup/class_setupStep8.inc b/setup/class_setupStep8.inc index 31ff4e97e..822940453 100644 --- a/setup/class_setupStep8.inc +++ b/setup/class_setupStep8.inc @@ -28,6 +28,12 @@ class setup_step_8 extends setup_step var $last_backup_name = ""; function setup_step_8() + { + $this->update_strings(); + } + + + function update_strings() { $this->s_title = _("Configuration file"); $this->s_info = _("In this step the configuration file will be created."); @@ -79,6 +85,9 @@ class setup_step_8 extends setup_step header('Content-Disposition: attachment; filename="gosa.conf"'); } + $str = $this->get_conf_data(); + $str = preg_replace("/\n[ ]*\n/","",$str); + echo $this->get_conf_data(); exit(); }