Ignore:
Timestamp:
2009/05/20 13:26:36 (15 years ago)
Author:
Seasoft
Message:

merge 17768, 17791
・取得元: version-2_4
【取得元のログメッセージ】
EC-CUBE2.4改修 #309
#309 仮登録完了メール再送機能の対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/SC_CustomerList.php

    r17568 r18020  
    2828 
    2929    var $arrColumnCSV; 
    30              
     30 
    3131    function SC_CustomerList($array, $mode = '') { 
    3232        parent::SC_SelectSql($array); 
     
    197197            // PCサイトメールが指定されている場合 
    198198            if ( strlen($this->arrSql['mail_type']) > 0 && $this->arrSql['mail_type'] == 1) { 
    199                 // 携帯ドメインを外す。 
    200                 foreach($arrMobileDomain as $mobile_domain) { 
    201                     $this->setWhere(" dtb_customer.email NOT ILIKE '%$mobile_domain' ");                     
    202                 } 
     199                // 携帯ドメインを外す。 
     200                foreach($arrMobileDomain as $mobile_domain) { 
     201                    $this->setWhere(" dtb_customer.email NOT ILIKE '%$mobile_domain' "); 
     202                } 
    203203            // 携帯サイトメールが指定されている場合 
    204204            } else if( strlen($this->arrSql['mail_type']) > 0 && $this->arrSql['mail_type'] == 2) { 
    205                 $this->setWhere( " dtb_customer.email_mobile <> ''  "); 
     205                $this->setWhere( " dtb_customer.email_mobile <> ''  "); 
    206206            } 
    207207        } 
Note: See TracChangeset for help on using the changeset viewer.