From bf7f1d6d6ae020d541cac05e19ef691b74efe84d Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Tue, 24 Mar 2015 08:40:02 +0000 Subject: [PATCH] Don't require the domain to be lower case. --- core/domain_settings/domain_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/domain_settings/domain_edit.php b/core/domain_settings/domain_edit.php index 3366e1dafd..ec80a7ef97 100644 --- a/core/domain_settings/domain_edit.php +++ b/core/domain_settings/domain_edit.php @@ -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"]);