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

SF.net SVN: ledger-smb: [1416] branches/1.2/LedgerSMB/IR.pm



Revision: 1416
          http://svn.sourceforge.net/ledger-smb/?rev=1416&view=rev
Author:   einhverfr
Date:     2007-07-16 19:46:41 -0700 (Mon, 16 Jul 2007)

Log Message:
-----------
Fixing a few more scoping issues, possibly including bug 1703347

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

Modified: branches/1.2/LedgerSMB/IR.pm
===================================================================
--- branches/1.2/LedgerSMB/IR.pm	2007-07-17 02:43:23 UTC (rev 1415)
+++ branches/1.2/LedgerSMB/IR.pm	2007-07-17 02:46:41 UTC (rev 1416)
@@ -839,7 +839,7 @@
 						            transdate, 
 						            project_id)
 						     VALUES (?, ?, ?, ?, ?)|;
-                    $sth = $dbh->prepare($query);
+                    my $sth = $dbh->prepare($query);
                     $sth->execute( $pthref->{trans_id},
                         $ref->{expense_accno_id},
                         $amount, $form->{transdate}, $ref->{project_id} )


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