From 7bde00c4529b81f0de8e8aa17d5f4a8509898963 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 1 Aug 2013 12:48:55 +0200 Subject: [PATCH] properly display auto-confirmed tx --- public/include/classes/transaction.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/classes/transaction.class.php b/public/include/classes/transaction.class.php index 7f604987..380561de 100644 --- a/public/include/classes/transaction.class.php +++ b/public/include/classes/transaction.class.php @@ -79,7 +79,7 @@ class Transaction extends Base { switch ($value) { case 'Confirmed': if (empty($filter['type']) || ($filter['type'] != 'Debit_AP' && $filter['type'] != 'Debit_MP' && $filter['type'] != 'TXFee' && $filter['type'] != 'Credit_PPS' && $filter['type'] != 'Fee_PPS' && $filter['type'] != 'Donation_PPS')) { - $aFilter[] = "b.confirmations >= " . $this->config['confirmations']; + $aFilter[] = "b.confirmations >= " . $this->config['confirmations'] . " OR ISNULL(b.confirmations)"; } break; case 'Unconfirmed':