Ignore:
Timestamp:
2012/02/06 11:27:03 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Category.php

    r21441 r21442  
    6363    function action() { 
    6464        // モバイル判定 
    65         switch (SC_Display_Ex::detectDevice() ) { 
     65        switch (SC_Display_Ex::detectDevice()) { 
    6666            case DEVICE_TYPE_MOBILE: 
    6767                // メインカテゴリの取得 
     
    9595            // 商品ID取得 
    9696        $product_id = ''; 
    97         if (isset($arrRequest['product_id']) && $arrRequest['product_id'] != '' && is_numeric($arrRequest['product_id']) ) { 
     97        if (isset($arrRequest['product_id']) && $arrRequest['product_id'] != '' && is_numeric($arrRequest['product_id'])) { 
    9898            $product_id = $arrRequest['product_id']; 
    9999        } 
    100100        // カテゴリID取得 
    101101        $category_id = ''; 
    102         if (isset($arrRequest['category_id']) && $arrRequest['category_id'] != '' && is_numeric($arrRequest['category_id']) ) { 
     102        if (isset($arrRequest['category_id']) && $arrRequest['category_id'] != '' && is_numeric($arrRequest['category_id'])) { 
    103103            $category_id = $arrRequest['category_id']; 
    104104        } 
Note: See TracChangeset for help on using the changeset viewer.