Ignore:
Timestamp:
2012/02/15 20:18:09 (12 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_List.php

    r21514 r21515  
    183183                    // 商品IDの正当性チェック 
    184184                    if (!SC_Utils_Ex::sfIsInt($this->arrForm['product_id']) 
    185                         || !SC_Helper_DB_Ex::sfIsRecord('dtb_products', 'product_id', $this->arrForm['product_id'], "del_flg = 0 AND status = 1")) { 
     185                        || !SC_Helper_DB_Ex::sfIsRecord('dtb_products', 'product_id', $this->arrForm['product_id'], 'del_flg = 0 AND status = 1')) { 
    186186                        SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND); 
    187187                    } 
     
    271271            default: 
    272272                if (strlen($searchCondition['where_category']) >= 1) { 
    273                     $dtb_product_categories = '(SELECT * FROM dtb_product_categories WHERE '.$searchCondition['where_category'].")"; 
     273                    $dtb_product_categories = '(SELECT * FROM dtb_product_categories WHERE '.$searchCondition['where_category'].')'; 
    274274                    $arrval_order           = $searchCondition['arrvalCategory']; 
    275275                } else { 
Note: See TracChangeset for help on using the changeset viewer.