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_Multiple.php

    r21420 r21437  
    7070        $objCustomer = new SC_Customer_Ex(); 
    7171        $objFormParam = new SC_FormParam_Ex(); 
     72 
     73        // 複数配送先指定が無効な場合はエラー 
     74        if (USE_MULTIPLE_SHIPPING === false) { 
     75            SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true); 
     76            exit; 
     77        } 
    7278 
    7379        $this->tpl_uniqid = $objSiteSess->getUniqId(); 
Note: See TracChangeset for help on using the changeset viewer.