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

SF.net SVN: ledger-smb: [722] branches/1.2/LedgerSMB/Form.pm



Revision: 722
          http://svn.sourceforge.net/ledger-smb/?rev=722&view=rev
Author:   einhverfr
Date:     2006-12-05 12:51:31 -0800 (Tue, 05 Dec 2006)

Log Message:
-----------
Fixed currency dropdown not showing.

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

Modified: branches/1.2/LedgerSMB/Form.pm
===================================================================
--- branches/1.2/LedgerSMB/Form.pm	2006-12-05 20:50:02 UTC (rev 721)
+++ branches/1.2/LedgerSMB/Form.pm	2006-12-05 20:51:31 UTC (rev 722)
@@ -2164,7 +2164,7 @@
 			$sth = $dbh->prepare($query);
 			$sth->execute || $self->dberror($query);
 
-			(undef, $val) = $sth->fetchrow_array();
+			($val) = $sth->fetchrow_array();
 			if ($_ eq 'curr'){
 				$self->{currencies} = $val;
 			} else {


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