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/products/LC_Page_Products_Detail.php

    r21515 r21563  
    505505        $from = 'dtb_review'; 
    506506        $where = 'del_flg = 0 AND status = 1 AND product_id = ? ORDER BY create_date DESC LIMIT ' . REVIEW_REGIST_MAX; 
    507         $arrval[] = $id; 
    508         $arrReview = $objQuery->select($col, $from, $where, $arrval); 
     507        $arrWhereVal = array($id); 
     508        $arrReview = $objQuery->select($col, $from, $where, $arrWhereVal); 
    509509        return $arrReview; 
    510510    } 
Note: See TracChangeset for help on using the changeset viewer.