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

    r21420 r21437  
    135135        // お届け先複数指定 
    136136        case 'multiple': 
     137            // 複数配送先指定が無効な場合はエラー 
     138            if (USE_MULTIPLE_SHIPPING === false) { 
     139                SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true); 
     140                exit; 
     141            } 
     142 
    137143            SC_Response_Ex::sendRedirect('multiple.php'); 
    138144            exit; 
Note: See TracChangeset for help on using the changeset viewer.