Changeset 23462


Ignore:
Timestamp:
2014/05/29 22:24:30 (10 years ago)
Author:
shutta
Message:

#2561 購入時のポイント使用欄にて、文字を入力した際のエラーがおかしい
基本の入力値チェックが通らないと、使用ポイント数の詳細チェックを行なわないように修正。

File:
1 edited

Legend:

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

    r23396 r23462  
    296296        } 
    297297 
    298         if ($arrForm['point_check'] == '1') { 
    299             $objErr->doFunc(array('ポイントを使用する', 'point_check'), array('EXIST_CHECK')); 
     298        $objErr->doFunc(array('ポイントを使用する', 'point_check'), array('EXIST_CHECK')); 
     299 
     300        if ($arrForm['point_check'] == '1' 
     301            && SC_Utils_Ex::isBlank($objErr->arrErr['use_point'])) { 
     302 
    300303            $objErr->doFunc(array('ポイント', 'use_point'), array('EXIST_CHECK')); 
    301304            if ($max_point == '') { 
Note: See TracChangeset for help on using the changeset viewer.