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').'
';
}
}