Changeset 12504


Ignore:
Timestamp:
2007/05/10 19:46:46 (17 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

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

    r12499 r12504  
    215215                if($domain == 2) { 
    216216                    foreach($arrDomainType as $val) {  
    217                         if($this->arrSql['mail_type']==1 ){ 
     217                        if($this->arrSql['mail_type'] == 1 ){ 
    218218                            if($sql_where == "") { 
    219219                            $sql_where .= "dtb_customer.email NOT ILIKE ? "; 
     
    221221                            $sql_where .= "AND dtb_customer.email NOT LIKE ? " ; 
    222222                            } 
    223                         }elseif($this->arrSql['mail_type']==2){ 
     223                        }elseif($this->arrSql['mail_type'] == 2 ){ 
    224224                            if($sql_where == "") { 
    225225                            $sql_where .= "dtb_customer.email_mobile NOT ILIKE ? "; 
     
    235235                if($domain == 3) { 
    236236                    foreach($arrDomainType as $val) {  
    237                         if($this->arrSql['mail_type']==1 ){ 
     237                        if($this->arrSql['mail_type'] == 1 ){ 
    238238                            if($sql_where == "") { 
    239239                            $sql_where .= "dtb_customer.email ILIKE ? "; 
     
    241241                            $sql_where .= "OR dtb_customer.email LIKE ? " ; 
    242242                            } 
    243                         }elseif($this->arrSql['mail_type']==2){ 
     243                        }elseif($this->arrSql['mail_type'] == 2 ){ 
    244244                            if($sql_where == "") { 
    245245                            $sql_where .= "dtb_customer.email_mobile NOT ILIKE ? "; 
Note: See TracChangeset for help on using the changeset viewer.