فهرست منبع

Don't require the domain to be lower case.

Mark Crane 10 سال پیش
والد
کامیت
a9f59ceb06
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      core/domain_settings/domain_edit.php

+ 1 - 1
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"]);