From cf0127f3009b7614066a0154b772bb63b17f7904 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Sun, 26 Dec 2010 11:46:47 -0500
Subject: [PATCH] Fixed: FS#1425 - Logging Problems / Capital Letters

---
 interface/web/sites/web_aliasdomain_edit.php |    3 +++
 interface/web/sites/web_subdomain_edit.php   |    3 +++
 interface/web/sites/web_domain_edit.php      |    4 ++++
 3 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/interface/web/sites/web_aliasdomain_edit.php b/interface/web/sites/web_aliasdomain_edit.php
index 1a3a483..acbf7b3 100644
--- a/interface/web/sites/web_aliasdomain_edit.php
+++ b/interface/web/sites/web_aliasdomain_edit.php
@@ -130,6 +130,9 @@
 		
 		$this->parent_domain_record = $parent_domain;
 		
+		//* make sure that the email domain is lowercase
+		if(isset($this->dataRecord["domain"])) $this->dataRecord["domain"] = strtolower($this->dataRecord["domain"]);
+		
 		parent::onSubmit();
 	}
 	
diff --git a/interface/web/sites/web_domain_edit.php b/interface/web/sites/web_domain_edit.php
index 3146939..0fda7b2 100644
--- a/interface/web/sites/web_domain_edit.php
+++ b/interface/web/sites/web_domain_edit.php
@@ -330,10 +330,14 @@
 				}
 
 			}
+			
 
 			// Clients may not set the client_group_id, so we unset them if user is not a admin and the client is not a reseller
 			if(!$app->auth->has_clients($_SESSION['s']['user']['userid'])) unset($this->dataRecord["client_group_id"]);
 		}
+		
+		//* make sure that the email domain is lowercase
+		if(isset($this->dataRecord["domain"])) $this->dataRecord["domain"] = strtolower($this->dataRecord["domain"]);
 
 
 		parent::onSubmit();
diff --git a/interface/web/sites/web_subdomain_edit.php b/interface/web/sites/web_subdomain_edit.php
index 2858e34..e290281 100644
--- a/interface/web/sites/web_subdomain_edit.php
+++ b/interface/web/sites/web_subdomain_edit.php
@@ -95,6 +95,9 @@
 		
 		$this->parent_domain_record = $parent_domain;
 		
+		//* make sure that the email domain is lowercase
+		if(isset($this->dataRecord["domain"])) $this->dataRecord["domain"] = strtolower($this->dataRecord["domain"]);
+		
 		parent::onSubmit();
 	}
 	

--
Gitblit v1.9.1