Ignore:
Timestamp:
2012/02/28 22:35:14 (12 years ago)
Author:
Seasoft
Message:

#1669 (変数の初期化漏れ)
#1613 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php

    r21527 r21563  
    172172        $from = 'dtb_order'; 
    173173        $where = 'del_flg = 0 AND status = ?'; 
    174         $arrval[] = $status; 
     174        $arrWhereVal = array($status); 
    175175        $order = 'order_id DESC'; 
    176176 
    177         $linemax = $objQuery->count($from, $where, $arrval); 
     177        $linemax = $objQuery->count($from, $where, $arrWhereVal); 
    178178        $this->tpl_linemax = $linemax; 
    179179 
     
    195195 
    196196        //検索結果の取得 
    197         $this->arrStatus = $objQuery->select($select, $from, $where, $arrval); 
     197        $this->arrStatus = $objQuery->select($select, $from, $where, $arrWhereVal); 
    198198    } 
    199199 
Note: See TracChangeset for help on using the changeset viewer.