diff options
Diffstat (limited to 'LedgerSMB/CA.pm')
-rwxr-xr-x | LedgerSMB/CA.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/CA.pm b/LedgerSMB/CA.pm index 264fcfe6..2c4ff105 100755 --- a/LedgerSMB/CA.pm +++ b/LedgerSMB/CA.pm @@ -316,7 +316,7 @@ sub all_transactions { $sth = $dbh->prepare($query); $sth->execute(@queryargs); - ($form->{balance}) = $sth->fetchrow_array($query); + ($form->{balance}) = $sth->fetchrow_array; $sth->finish; @queryargs = (); } |