Changeset 12493


Ignore:
Timestamp:
2007/05/10 18:42:55 (17 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/SC_CustomerList.php

    r12492 r12493  
    214214                if($domain==3){ 
    215215                    if($this->arrSql['mail_type']==1){ 
    216                         $sql_where .= "OR dtb_customer.email LIKE ? " ; 
     216                        if($sql_where == "") { 
     217                            $sql_where = "dtb_customer.email ILIKE ? "; 
     218                        } else { 
     219                            $sql_where .= "OR dtb_customer.email LIKE ? " ; 
     220                        } 
    217221                }elseif($this->arrSql['mail_type']==2){ 
    218222                        $sql_where .= "OR dtb_customer.email_mobile LIKE ? " ; 
Note: See TracChangeset for help on using the changeset viewer.