Ignore:
Timestamp:
2006/11/30 17:18:40 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/lib/slib.php

    r9893 r9894  
    10581058 
    10591059/* ÀǶâ·×»» */ 
    1060 function sfTax($price, $tax, $tax_rule, $digit = 1) { 
     1060function sfTax($price, $tax, $tax_rule) { 
    10611061    $real_tax = $tax / 100; 
    10621062    $ret = $price * $real_tax; 
     
    10831083 
    10841084/* ÀǶâÉÕÍ¿ */ 
    1085 function sfPreTax($price, $tax, $tax_rule, $digit = 1) { 
     1085function sfPreTax($price, $tax, $tax_rule) { 
    10861086    $real_tax = $tax / 100; 
    10871087    $ret = $price * (1 + $real_tax); 
Note: See TracChangeset for help on using the changeset viewer.