- added possibility to allow customer to login with their domain-name, fixes #374

This commit is contained in:
Michael Kaufmann (d00p)
2010-10-15 11:48:05 +00:00
parent db05ea5f32
commit d7b5c4bc71
8 changed files with 77 additions and 3 deletions

View File

@@ -334,4 +334,13 @@ function parseAndOutputPreconfig(&$has_preconfig, &$return, $current_version)
eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";");
}
}
if(versionInUpdate($current_version, '0.9.14-svn6'))
{
$has_preconfig = true;
$description = 'You can now allow customers to use any of their domains as username for the login.';
$question = '<strong>Do you want to enable domain-login for all customers?:</strong>&nbsp;';
$question.= makeyesno('update_allow_domain_login', '1', '0', '0');
eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";");
}
}