Changeset 12431


Ignore:
Timestamp:
2007/05/10 11:54:47 (17 years ago)
Author:
matsumoto
Message:
 
Location:
branches/dev/data
Files:
3 edited

Legend:

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

    r12429 r12431  
    207207                $this->setWhere( "email LIKE '%@docomo.ne.jp%' OR email LIKE '%@softbank.ne.jp%' OR email LIKE '%@ezweb.ne.jp%' OR email LIKE '%vodafone.ne.jp'" ); 
    208208            }elseif($this->arrSql['mail_type']==2){ 
    209                 $this->setWhere( "email_mobile LIKE '%@docomo.ne.jp%' OR email_mobile LIKE '%@softbank.ne.jp%' OR email_mobile LIKE '%@ezweb.ne.jp%' OR email_mobile LIKE '%@vodafone.ne.jp%'" ); 
     209                $this->setWhere( "email_mobile LIKE '%@docomo.ne.jp%' OR email_mobile LIKE '%@softbank.ne.jp%' OR email_mobile LIKE '%@ezweb.ne.jp%' OR email_mobile LIKE '%@vodafone.ne.jp'" ); 
    210210                } 
    211211            } 
  • branches/dev/data/class/SC_SelectSql.php

    r12315 r12431  
    4545        $return = sfManualEscape($val); 
    4646        $return = "%" .$return. "%"; 
     47        return $return; 
     48    } 
     49     
     50    function addSearchEnd($val) { 
     51        $return = sfManuaiEscape($val); 
     52        $return = "%" .$return; 
    4753        return $return; 
    4854    } 
  • branches/dev/data/conf/conf.php

    r12410 r12431  
    698698 
    699699$arrDomainType = array( 
    700                       1 => "@docomo.ne.jp", 
    701                       2 => "@ezweb.ne.jp", 
    702                       3 => "@softbank.ne.jp", 
    703                       4 => "@vodafone.ne.jp" 
     700                      1 => "docomo.ne.jp", 
     701                      2 => "ezweb.ne.jp", 
     702                      3 => "softbank.ne.jp", 
     703                      4 => "vodafone.ne.jp" 
    704704                  );                 
    705705                 
Note: See TracChangeset for help on using the changeset viewer.