Index: branches/dev/data/class/SC_CustomerList.php
===================================================================
--- branches/dev/data/class/SC_CustomerList.php	(revision 13984)
+++ branches/dev/data/class/SC_CustomerList.php	(revision 13985)
@@ -209,13 +209,13 @@
         			if($this->arrSql['not_domaininc'] == '3') {
         				if($sql_where == "") {
-        					$sql_where .= "dtb_customer.email NOT ILIKE ? ";
+        					$sql_where .= "dtb_customer.email ILIKE ? ";
         				} else {
-        					$sql_where .= "AND dtb_customer.email NOT ILIKE ? " ;
+        					$sql_where .= "AND dtb_customer.email ILIKE ? " ;
         				}
         			} else {
         				if($sql_where == "") {
-        					$sql_where .= "dtb_customer.email ILIKE ? ";
+        					$sql_where .= "dtb_customer.email NOT ILIKE ? ";
         				} else {
-        					$sql_where .= "OR dtb_customer.email ILIKE ? " ;
+        					$sql_where .= "OR dtb_customer.email NOT ILIKE ? " ;
         				}
         			}
