From f5a0727b8e026df94fa2ff41a96b5f1b263f3de3 Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Wed, 14 Apr 2010 08:22:25 +0000 Subject: [PATCH] - fixing improved update-procedure + beautification --- install/updates/preconfig.php | 2 +- install/updates/preconfig/0.9/preconfig_0.9.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/updates/preconfig.php b/install/updates/preconfig.php index 01b87508..17e20916 100644 --- a/install/updates/preconfig.php +++ b/install/updates/preconfig.php @@ -55,5 +55,5 @@ function versionInUpdate($current_version, $version_to_check) $current_version.= '-svn0'; } - return version_compare($current_version, $version_to_check, '<='); + return version_compare($current_version, $version_to_check, '<'); } diff --git a/install/updates/preconfig/0.9/preconfig_0.9.inc.php b/install/updates/preconfig/0.9/preconfig_0.9.inc.php index 2350cbd2..e2172c21 100644 --- a/install/updates/preconfig/0.9/preconfig_0.9.inc.php +++ b/install/updates/preconfig/0.9/preconfig_0.9.inc.php @@ -33,6 +33,6 @@ function parseAndOutputPreconfig(&$has_preconfig, &$return, $current_version) $return .= 'This makes it possible to catch all non-existing subdomains with the main vhost but also have the ability to use subdomains for that domain.
'; $return .= 'If you would like Froxlor to do so with your domains, the update script can set the correct values for existing domains for you. Note: future domains will have wildcard-entries enabled by default no matter how you decide here.

'; $return .= 'Do you want to use wildcard-entries for existing domains?: '; - $return .= makeyesno('update_domainwildcardentry', '1', '0', '1'); + $return .= makeyesno('update_domainwildcardentry', '1', '0', '1').'

'; } }