Ignore:
Timestamp:
2010/03/11 10:35:11 (14 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/data/class/pages/admin/mail/LC_Page_Admin_Mail.php

    r18177 r18609  
    138138        if (!isset($_POST['buy_product_code'])) $_POST['buy_product_code'] = ""; 
    139139        if (!isset($_GET['mode'])) $_GET['mode'] = ""; 
     140         
     141        $this->httpCacheControl('nocache'); 
    140142    } 
    141143 
     
    202204            $this->list_data = $list_data; 
    203205            $this->arrCampaignList = $this->lfGetCampaignList($objQuery); 
    204  
     206             
    205207            $objView->assignobj($this); 
    206208            $objView->display($tpl_path); 
     
    226228 
    227229            //-- 検索開始 
    228             if (!is_array($this->arrErr)) { 
     230            if (empty($this->arrErr)) { 
    229231                $this->list_data['name'] = isset($this->list_data['name']) 
    230232                    ? SC_Utils_Ex::sfManualEscape($this->list_data['name']) : ""; 
     
    273275            $this->arrErr = $this->lfErrorCheck($this->list_data); 
    274276            //-- エラーなし 
    275             if (!is_array($this->arrErr)) { 
     277            if (empty($this->arrErr)) { 
    276278                //-- 現在時刻の取得 
    277279                $this->arrNowDate = $this->lfGetNowDate(); 
     
    298300 
    299301            //-- 検索開始 
    300             if ( ! is_array($this->arrErr)) { 
     302            if (empty($this->arrErr)) { 
    301303                $this->list_data['name'] = isset($this->list_data['name']) ? SC_Utils_Ex::sfManualEscape($this->list_data['name']) : ""; 
    302304                $this->arrHidden = $this->lfGetHidden($this->list_data); // hidden要素作成 
     
    348350 
    349351            //-- 検索開始 
    350             if ( ! is_array($this->arrErr)) { 
     352            if (empty($this->arrErr)) { 
    351353                $this->list_data['name'] = 
    352354                    isset($this->list_data['name']) 
Note: See TracChangeset for help on using the changeset viewer.