Changeset 12454


Ignore:
Timestamp:
2007/05/10 13:12:58 (17 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

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

    r12453 r12454  
    219219            if($val==2){ 
    220220                if($this->arrSql['mail_type']==1){ 
    221                 $this->setWhere( "email NOT ILIKE '%@docomo.ne.jp%' " . 
    222                         "AND email NOT ILIKE '%@softbank.ne.jp%' " . 
    223                         "AND email NOT ILIKE '%@ezweb.ne.jp%' " . 
    224                         "AND email NOT ILIKE '%vodafone.ne.jp'" ); 
     221                $this->setWhere( "email NOT LIKE '%@docomo.ne.jp%' " . 
     222                        "AND email NOT LIKE '%@softbank.ne.jp%' " . 
     223                        "AND email NOT LIKE '%@ezweb.ne.jp%' " . 
     224                        "AND email NOT LIKE '%vodafone.ne.jp'" ); 
    225225            }elseif($this->arrSql['mail_type']==2){ 
    226                 $this->setWhere( "email_mobile NOT ILIKE '%@docomo.ne.jp%' " . 
    227                         "AND email_mobile NOT ILIKE '%@softbank.ne.jp%' " . 
    228                         "AND email_mobile NOT ILIKE '%@ezweb.ne.jp%' " . 
    229                         "AND email_mobile NOT ILIKE '%vodafone.ne.jp'" ); 
     226                $this->setWhere( "email_mobile NOT LIKE '%@docomo.ne.jp%' " . 
     227                        "AND email_mobile NOT LIKE '%@softbank.ne.jp%' " . 
     228                        "AND email_mobile NOT LIKE '%@ezweb.ne.jp%' " . 
     229                        "AND email_mobile NOT LIKE '%vodafone.ne.jp'" ); 
    230230                } 
    231231            } 
Note: See TracChangeset for help on using the changeset viewer.