Don't require the domain to be lower case.

This commit is contained in:
Mark Crane 2015-03-24 08:40:02 +00:00
parent 73c6cec61c
commit bf7f1d6d6a
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ else {
//get http post variables and set them to php variables
if (count($_POST) > 0) {
$domain_name = strtolower(check_str($_POST["domain_name"]));
$domain_name = check_str($_POST["domain_name"]);
$domain_parent_uuid = check_str($_POST["domain_parent_uuid"]);
$domain_enabled = check_str($_POST["domain_enabled"]);
$domain_description = check_str($_POST["domain_description"]);