Ignore:
Timestamp:
2012/02/03 15:21:00 (12 years ago)
Author:
shutta
Message:

#1627 (複数配送先指定機能の使用可否をパラメータ設定化)
ロジック側での不正入力チェックを実装。

File:
1 edited

Legend:

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

    r21420 r21437  
    197197        // 複数配送ページへ遷移 
    198198        case 'multiple': 
     199            // 複数配送先指定が無効な場合はエラー 
     200            if (USE_MULTIPLE_SHIPPING === false) { 
     201                SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true); 
     202                exit; 
     203            } 
     204 
    199205            $this->lfInitParam($objFormParam); 
    200206            $objFormParam->setParam($_POST); 
Note: See TracChangeset for help on using the changeset viewer.