diff options
Diffstat (limited to 'LedgerSMB')
-rwxr-xr-x | LedgerSMB/Form.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index 7409b4a8..7871c183 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -2157,7 +2157,7 @@ sub create_links { $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 { |