Index: branches/dev/data/class/SC_CustomerList.php
===================================================================
--- branches/dev/data/class/SC_CustomerList.php	(revision 12337)
+++ branches/dev/data/class/SC_CustomerList.php	(revision 12338)
@@ -200,17 +200,25 @@
 
 		//¥É¥á¥¤¥ó»ØÄê
-/*        if ( $mode == 'magazine' ){
+        if ( $mode == 'magazine' ){
             if ( strlen($this->arrSql['domain']) > 0 && $this->arrSql['domain'] == 3) {
-¡¡¡¡¡¡¡¡¡¡¡¡    $this->setWhere("(email || email_mobile LIKE ?)" );¡¡¡¡
-			}
+¡¡¡¡¡¡¡¡¡¡¡¡    if(DB_TYPE == "pgsql"){
+				$this->setWhere( "(email || email_mobile LIKE ?)" );
+			}elseif(DB_TYPE == "mysql"){
+				$this->setWhere("concat(email,email_mobile) LIKE ?" );
+			}¡¡¡¡
             $searchDomainType = $this->addSearchStr($this->arrSql['domain_type']);
             $this->arrVal[] = $searchDomaintype;
+            }
 			if ( strlen($this->arrSql['domain']) > 0 && $this->arrSql['domain'] == 2) {
-                $this->setWhere("(email || email_mobile NOT LIKE ?)" );
+            if(DB_TYPE == "pgsql"){
+				$this->setWhere( "(email || email_mobile LIKE ?)" );
+			}elseif(DB_TYPE == "mysql"){
+				$this->setWhere("concat(email,email_mobile) LIKE ?" );
             }
             $searchDomainType = $this->addSearchStr($this->arrSql['domain_type']);
             $this->arrVal[] = $searchDomaintype;
+            }
         }
-*/
+
 		//¡¡HTML-mail¡ÊÇÛ¿®Êý¼°)
 		if ( $mode == 'magazine' ){
