Index: branches/dev/data/class/SC_CustomerList.php
===================================================================
--- branches/dev/data/class/SC_CustomerList.php	(revision 13511)
+++ branches/dev/data/class/SC_CustomerList.php	(revision 13910)
@@ -206,27 +206,24 @@
         	$sql_where = "";
             $domain = $this->arrSql['domain'];
-            //¥É¥á¥¤¥ó»ØÄê»þ
-            if($domain == 2 || $domain == 3) {
-            	foreach($arrDomainType as $val) {
-            	//PC¥É¥á¥¤¥ó
-            	    if($domain == 2) {
-	            		    if($sql_where == "") {
-        		    	        $sql_where .= "dtb_customer.email NOT ILIKE ? ";
-        		            } else {
-            	                $sql_where .= "AND dtb_customer.email NOT LIKE ? " ;
-        		    	    }
-	            		}
-            	//·ÈÂÓ¥É¥á¥¤¥ó
-            	    if($domain == 3) {
-	            	        if($sql_where == "") {
-        		    		    $sql_where .= "dtb_customer.email ILIKE ? ";
-        		    	    } else {
-            	                $sql_where .= "OR dtb_customer.email LIKE ? " ;
-        		    	    }
-	        		    }
-		        	    $this->arrVal[] = $this->addSearchStr($val);
-		        }
-		        $this->setWhere($sql_where);
-            }  
+            foreach($arrDomainType as $val) {
+            //PC¥É¥á¥¤¥ó
+            	if($domain == 2) {
+	            	if($sql_where == "") {
+        		        $sql_where .= "dtb_customer.email NOT ILIKE ? ";
+        		    } else {
+            	        $sql_where .= "AND dtb_customer.email NOT LIKE ? " ;
+        		    }
+	            }
+            //·ÈÂÓ¥É¥á¥¤¥ó
+            	if($domain == 3) {
+	            	if($sql_where == "") {
+        		    	$sql_where .= "dtb_customer.email ILIKE ? ";
+        		    } else {
+            	        $sql_where .= "OR dtb_customer.email LIKE ? " ;
+        		    }
+	        	}
+		        $this->arrVal[] = $this->addSearchStr($val);
+		    }
+		    $this->setWhere($sql_where);
         }  
 
