Properly filter Debit transactions
This commit is contained in:
parent
9c2cefd2c3
commit
9cb80c6fd9
@ -112,7 +112,7 @@ class Transaction {
|
||||
case 'status':
|
||||
switch ($value) {
|
||||
case 'Confirmed':
|
||||
if (empty($filter['type']) || ($filter['type'] != 'TXFee' && $filter['type'] != 'Credit_PPS' && $filter['type'] != 'Fee_PPS' && $filter['type'] != 'Donation_PPS')) {
|
||||
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'];
|
||||
}
|
||||
break;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user