summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog2
-rwxr-xr-xLedgerSMB/Form.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index cdf7e46d..4f957f4f 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,8 @@ Changelog for 1.2.5
* Fixed FX issue with posting cash transfers (Chris T)
* Corrected multibyte handling in form generation (Seneca)
* Corrected NaN issues in invoice printing (Seneca)
+* Corrected PO and order number searches not working (Chris T).
+* Corrected Exchange Rate display issue (CHris T).
Changelog for 1.2.4
* Fixed internal functions avgcost() and lastcost() to not use float (Joshua D)
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm
index 011f2666..23b6d866 100755
--- a/LedgerSMB/Form.pm
+++ b/LedgerSMB/Form.pm
@@ -1741,9 +1741,9 @@ sub get_exchangerate {
($exchangerate) = $sth->fetchrow_array;
}
- $exchangerate;
$sth->finish;
$self->{dbh}->commit;
+ $exchangerate;
}
sub check_exchangerate {