From 1508f963d34eaa64032b3de269c71aedb6664b88 Mon Sep 17 00:00:00 2001 From: abijah Date: Fri, 19 Jun 2009 16:19:18 +0000 Subject: [PATCH] Fixed a bug that was leaving unreconciled entries in the list of reconciled entries. git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605@170 97e9348a-65ac-dc4b-aefc-98561f571b83 --- site/models/account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/models/account.php b/site/models/account.php index af7fc34..71df3f2 100644 --- a/site/models/account.php +++ b/site/models/account.php @@ -307,7 +307,7 @@ class Account extends AppModel { elseif ($amount > 0) $apply = $amount; else { - unset($unreconciled[$i]); + unset($unreconciled[$ofund]['entry'][$i]); continue; }