Ignore:
Timestamp:
2014/06/03 15:20:54 (12 years ago)
Author:
shutta
Message:

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

Location:
branches/version-2_13-dev/data/class/pages/admin/products
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSV.php

    r23366 r23506  
    348348            // パラメーター登録 
    349349            $objFormParam->addParam( 
    350                     $item['disp_name'] 
    351                     , $col 
    352                     , constant($item['size_const_type']) 
    353                     , $item['mb_convert_kana_option'] 
    354                     , $arrErrorCheckTypes 
    355                     , $item['default'] 
    356                     , $item['rw_flg'] != CSV_COLUMN_RW_FLG_READ_ONLY 
     350                    $item['disp_name'], 
     351                    $col, 
     352                    constant($item['size_const_type']), 
     353                    $item['mb_convert_kana_option'], 
     354                    $arrErrorCheckTypes, 
     355                    $item['default'], 
     356                    $item['rw_flg'] != CSV_COLUMN_RW_FLG_READ_ONLY 
    357357                    ); 
    358358        } 
     
    674674                $arrErr['product_class_id'] = '※ 商品規格ID指定時には商品IDの指定が必須です。'; 
    675675            } else { 
    676                 if (!$this->objDb->sfIsRecord('dtb_products_class', 'product_id, product_class_id' 
    677                         , array($item['product_id'], $item['product_class_id'])) 
     676                if (!$this->objDb->sfIsRecord('dtb_products_class', 'product_id, product_class_id', 
     677                        array($item['product_id'], $item['product_class_id'])) 
    678678                ) { 
    679679                    $arrErr['product_class_id'] = '※ 指定の商品IDと商品規格IDの組合せは正しくありません。'; 
  • branches/version-2_13-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php

    r23496 r23506  
    323323            // パラメーター登録 
    324324            $objFormParam->addParam( 
    325                     $item['disp_name'] 
    326                     , $col 
    327                     , constant($item['size_const_type']) 
    328                     , $item['mb_convert_kana_option'] 
    329                     , $arrErrorCheckTypes 
    330                     , $item['default'] 
    331                     , $item['rw_flg'] != CSV_COLUMN_RW_FLG_READ_ONLY 
     325                    $item['disp_name'], 
     326                    $col, 
     327                    constant($item['size_const_type']), 
     328                    $item['mb_convert_kana_option'], 
     329                    $arrErrorCheckTypes, 
     330                    $item['default'], 
     331                    $item['rw_flg'] != CSV_COLUMN_RW_FLG_READ_ONLY 
    332332                    ); 
    333333        } 
Note: See TracChangeset for help on using the changeset viewer.