Index: branches/dev/data/class/SC_CustomerList.php
===================================================================
--- branches/dev/data/class/SC_CustomerList.php	(revision 13951)
+++ branches/dev/data/class/SC_CustomerList.php	(revision 13952)
@@ -204,10 +204,9 @@
         	global $arrDomainType;
         	$sql_where = "";
-        	$domain = ($this->arrSql['domain']);
         	//¥É¥á¥¤¥ó»ØÄê»þ
-        	if($domain == 2 || $domain == 3) {
+        	if ( strlen($this->arrSql['domain']) > 1 ) {
         		foreach($arrDomainType as $val) {
         			//PC¥É¥á¥¤¥ó
-        			if($domain == 2) {
+        			if($this->arrSql['domain'] == 2) {
         				if($sql_where == "") {
         					$sql_where .= "dtb_customer.email NOT ILIKE ? ";
@@ -217,5 +216,5 @@
         			}
         			//·ÈÂÓ¥É¥á¥¤¥ó
-        			if($domain == 3) {
+        			if($this->arrSql['domain'] == 3) {
         				if($sql_where == "") {
         					$sql_where .= "dtb_customer.email ILIKE ? ";
@@ -227,5 +226,4 @@
         			$this->arrVal[] = $searchDomain;
         		}
-        	}
         	$this->setWhere($sql_where);
         }
