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

SF.net SVN: ledger-smb: [976] branches/1.2/LedgerSMB/AA.pm



Revision: 976
          http://svn.sourceforge.net/ledger-smb/?rev=976&view=rev
Author:   einhverfr
Date:     2007-03-21 09:24:25 -0700 (Wed, 21 Mar 2007)

Log Message:
-----------
Fixing bind variable bug

Modified Paths:
--------------
    branches/1.2/LedgerSMB/AA.pm

Modified: branches/1.2/LedgerSMB/AA.pm
===================================================================
--- branches/1.2/LedgerSMB/AA.pm	2007-03-21 07:11:56 UTC (rev 975)
+++ branches/1.2/LedgerSMB/AA.pm	2007-03-21 16:24:25 UTC (rev 976)
@@ -428,7 +428,7 @@
 					            ?, ?)|;
 
 				@queryargs = ($form->{id}, 
-					$paid{amount}{$i} * $ml,
+					$paid{amount}{$i} * $ml, $accno,
 					$form->{"datepaid_$i"});
 				$dbh->prepare($query)->execute(@queryargs) 
 					|| $form->dberror($query);


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