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/batch/SC_Batch_Daily.php

    r17318 r18609  
    4444     */ 
    4545    function SC_Batch_Daily($argv = "") { 
     46        // 実行時間を制限しない 
     47        set_time_limit(0); 
    4648 
    4749        if (!empty($argv)) { 
     
    136138            $arrRet = $objQuery->select("order_date, create_date", "dtb_bat_order_daily", "order_date = ?", array($batch_date)); 
    137139            // すでにバッチ処理が終了しているかチェックする。 
    138             $count = count($arrRet); 
    139             if( $count > 0 ) { 
     140            if(count($arrRet) > 0) { 
    140141                list($create_date) = split("\.", $arrRet[0]['create_date']); 
    141142                list($order_date) = split("\.", $arrRet[0]['order_date']); 
Note: See TracChangeset for help on using the changeset viewer.