From 41eaa8742ea0004c49d5407b9caa3cf01e836fe3 Mon Sep 17 00:00:00 2001 From: cfoe Date: Tue, 21 Aug 2012 08:30:24 +0000 Subject: [PATCH] fixed php errors on install/update --- install/dist/lib/fedora.lib.php | 4 ++-- install/dist/lib/gentoo.lib.php | 2 +- install/dist/lib/opensuse.lib.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/install/dist/lib/fedora.lib.php b/install/dist/lib/fedora.lib.php index 7ee22dc99..f4f48c341 100644 --- a/install/dist/lib/fedora.lib.php +++ b/install/dist/lib/fedora.lib.php @@ -742,7 +742,7 @@ class installer_dist extends installer_base { $content = str_replace('{ispconfig_log_priority}', $conf['ispconfig_log_priority'], $content); $content = str_replace('{language}', $conf['language'], $content); $content = str_replace('{timezone}', $conf['timezone'], $content); - $content = str_replace('{theme}', $conf['theme'], $content) + $content = str_replace('{theme}', $conf['theme'], $content); wf("$install_dir/interface/lib/$configfile", $content); @@ -766,7 +766,7 @@ class installer_dist extends installer_base { $content = str_replace('{ispconfig_log_priority}', $conf['ispconfig_log_priority'], $content); $content = str_replace('{language}', $conf['language'], $content); $content = str_replace('{timezone}', $conf['timezone'], $content); - $content = str_replace('{theme}', $conf['theme'], $content) + $content = str_replace('{theme}', $conf['theme'], $content); wf("$install_dir/server/lib/$configfile", $content); diff --git a/install/dist/lib/gentoo.lib.php b/install/dist/lib/gentoo.lib.php index dab2c5fc9..3634b844c 100644 --- a/install/dist/lib/gentoo.lib.php +++ b/install/dist/lib/gentoo.lib.php @@ -740,7 +740,7 @@ class installer extends installer_base $content = str_replace('{ispconfig_log_priority}', $conf['ispconfig_log_priority'], $content); $content = str_replace('{language}', $conf['language'], $content); $content = str_replace('{timezone}', $conf['timezone'], $content); - $content = str_replace('{theme}', $conf['theme'], $content) + $content = str_replace('{theme}', $conf['theme'], $content); $this->write_config_file("$install_dir/interface/lib/$configfile", $content); diff --git a/install/dist/lib/opensuse.lib.php b/install/dist/lib/opensuse.lib.php index d117b251a..19089aea2 100644 --- a/install/dist/lib/opensuse.lib.php +++ b/install/dist/lib/opensuse.lib.php @@ -782,7 +782,7 @@ class installer_dist extends installer_base { $content = str_replace('{ispconfig_log_priority}', $conf['ispconfig_log_priority'], $content); $content = str_replace('{language}', $conf['language'], $content); $content = str_replace('{timezone}', $conf['timezone'], $content); - $content = str_replace('{theme}', $conf['theme'], $content) + $content = str_replace('{theme}', $conf['theme'], $content); wf("$install_dir/interface/lib/$configfile", $content); @@ -806,7 +806,7 @@ class installer_dist extends installer_base { $content = str_replace('{ispconfig_log_priority}', $conf['ispconfig_log_priority'], $content); $content = str_replace('{language}', $conf['language'], $content); $content = str_replace('{timezone}', $conf['timezone'], $content); - $content = str_replace('{theme}', $conf['theme'], $content) + $content = str_replace('{theme}', $conf['theme'], $content); wf("$install_dir/server/lib/$configfile", $content); -- GitLab