Ignore:
Timestamp:
2007/09/03 15:50:04 (17 years ago)
Author:
nanasess
Message:

未定義変数の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/SC_CustomerList.php

    r15561 r15562  
    116116        } 
    117117 
    118         // 性別 
     118        //性別 
     119        if (!isset($this->arrSql['sex'])) $this->arrSql['sex'] = ""; 
    119120        if ( is_array( $this->arrSql['sex'] ) ){ 
    120121            $arrSexVal = $this->setItemTerm( $this->arrSql['sex'] ,"sex" ); 
     
    124125        } 
    125126 
    126         // 職業 
     127        //職業 
     128        if (!isset($this->arrSql['job'])) $this->arrSql['job'] = ""; 
    127129        if ( is_array( $this->arrSql['job'] ) ){ 
    128130            if ( in_array("不明", $this->arrSql['job'] ) ) { 
     
    294296            } 
    295297        } 
    296         // 携帯電話番号 
     298        //携帯電話番号 
     299        if (!isset($this->arrSql['cell'])) $this->arrSql['cell'] = ""; 
    297300        if ( is_numeric( $this->arrSql['cell'] ) ) { 
    298301            $this->setWhere( "(cell01 || cell02 || cell03 LIKE ?)" ); 
     
    301304        } 
    302305 
    303         // キャンペーン 
     306        //キャンペーン 
     307        if (!isset($this->arrSql['campaign_id'])) $this->arrSql['campaign_id'] = ""; 
    304308        if ( is_numeric( $this->arrSql['campaign_id'] ) ) { 
    305309            $this->setWhere( " customer_id IN (SELECT distinct customer_id FROM dtb_campaign_order WHERE campaign_id = ?)" ); 
Note: See TracChangeset for help on using the changeset viewer.