[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[2286] trunk/LedgerSMB/IS.pm



Revision: 2286
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2286&view=rev
Author:   einhverfr
Date:     2008-08-20 18:27:39 +0000 (Wed, 20 Aug 2008)

Log Message:
-----------
Correcting errors on Perl 5.10 when sales tax is applied

Modified Paths:
--------------
    trunk/LedgerSMB/IS.pm

Modified: trunk/LedgerSMB/IS.pm
===================================================================
--- trunk/LedgerSMB/IS.pm	2008-08-20 03:59:13 UTC (rev 2285)
+++ trunk/LedgerSMB/IS.pm	2008-08-20 18:27:39 UTC (rev 2286)
@@ -375,7 +375,7 @@
                 $tax += Tax::apply_taxes( ..hidden.., $form, $linetotal );
             }
 
-            foreach $item (@taxaccounts) {
+            foreach my $item (@taxaccounts) {
                 push @taxrates, 100 * $item->rate;
                 $taxaccounts{ $item->account } += $item->value;
                 if ( $form->{taxincluded} ) {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.