From d4a9af86c4289ee2b3fa468cd1cf88033b990be8 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Tue, 6 Aug 2013 09:26:43 +0200 Subject: [PATCH] removed debug output --- public/include/classes/transaction.class.php | 1 - 1 file changed, 1 deletion(-) diff --git a/public/include/classes/transaction.class.php b/public/include/classes/transaction.class.php index 58646a4e..6da0ee49 100644 --- a/public/include/classes/transaction.class.php +++ b/public/include/classes/transaction.class.php @@ -44,7 +44,6 @@ class Transaction extends Base { OR ( t.account_id = ? AND t.id <= ? AND t.type IN ( 'Credit_PPS', 'Donation_PPS', 'Fee_PPS', 'TXFee', 'Debit_MP', 'Debit_AP' ) )"); if ($this->checkStmt($stmt) && $stmt->bind_param('iiiii', $account_id, $txid, $this->config['confirmations'], $account_id, $txid) && $stmt->execute()) return true; - echo 'Fail: ' . $this->mysqli->error; return false; }