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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/helper/SC_Helper_Payment.php

    r23426 r23513  
    8888                    $arrPayment[] = $data; 
    8989                } 
    90             } 
    9190            // 下限のみ設定されている 
    92             elseif (strlen($data['rule_max']) != 0) { 
     91            } elseif (strlen($data['rule_max']) != 0) { 
    9392                if ($data['rule_max'] <= $total) { 
    9493                    $arrPayment[] = $data; 
    9594                } 
    96             } 
    9795            // 上限のみ設定されている 
    98             elseif (strlen($data['upper_rule']) != 0) { 
     96            } elseif (strlen($data['upper_rule']) != 0) { 
    9997                if ($data['upper_rule'] >= $total) { 
    10098                    $arrPayment[] = $data; 
    10199                } 
    102             } 
    103100            // いずれも設定なし 
    104             else { 
     101            } else { 
    105102                $arrPayment[] = $data; 
    106103            } 
Note: See TracChangeset for help on using the changeset viewer.