forked from extern/egroupware
enabled domainnames with . in the name
example: kneschke.de language fixes for german
This commit is contained in:
parent
5105209379
commit
9452e2f19b
@ -375,7 +375,7 @@ you appear to have microsoft sql server support enabled setup de Sie scheinen Mi
|
||||
you appear to have mysql support enabled setup de Sie scheinen MySQL Unterstützung zu haben.
|
||||
you appear to have oracle support enabled setup de Sie scheinen Oracle Unterstützung zu haben.
|
||||
you appear to have oracle v8 (oci) support enabled setup de Sie scheinen Oracle V8 (OCI) Unterstützung zu haben.
|
||||
you appear to have postgres-db support enabled setup de Sie scheinen Postgres Unterstützung zu haben.
|
||||
You appear to have PostgreSQL support enabled setup de Sie scheinen Postgres Unterstützung zu haben.
|
||||
you appear to have xml support enabled setup de Sie scheinen XML Unterstützung zu haben.
|
||||
you are ready for this stage, but this stage is not yet written.<br> setup de Sie sind bereit für diesen Schritt, aber dieser Abschnitt wurde noch nicht geschrieben.<br>
|
||||
you didn't enter a config password for domain %1 setup de Sie haben kein Passwort für die Domain %1 angegeben
|
||||
|
@ -40,17 +40,21 @@
|
||||
|
||||
function check_form_values()
|
||||
{
|
||||
// PHP will automatically replace any dots in incoming
|
||||
// variable names with underscores.
|
||||
|
||||
$errors = '';
|
||||
$domains = get_var('domains',Array('POST'));
|
||||
@reset($domains);
|
||||
while(list($k,$v) = @each($domains))
|
||||
{
|
||||
{
|
||||
$variableName = str_replace('.','_',$k);
|
||||
$deletedomain = get_var('deletedomain',Array('POST'));
|
||||
if(isset($deletedomain[$k]))
|
||||
if(isset($deletedomain[$variableName]))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
$dom = get_var('setting_'.$k,Array('POST'));
|
||||
$dom = get_var('setting_'.$variableName,Array('POST'));
|
||||
if(!$dom['config_pass'])
|
||||
{
|
||||
$errors .= '<br>' . lang("You didn't enter a config password for domain %1",$v);
|
||||
|
Loading…
Reference in New Issue
Block a user