From d6670508f7e41d04f6981979aee153a338cd07d4 Mon Sep 17 00:00:00 2001 From: Andrea Baccega Date: Thu, 23 Jan 2014 12:56:19 +0100 Subject: [PATCH] Lets always use $this->table instead of hardcoding --- 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 2858457c..16f37496 100644 --- a/public/include/classes/transaction.class.php +++ b/public/include/classes/transaction.class.php @@ -295,7 +295,7 @@ class Transaction extends Base { ), 8 ), 0 ) AS confirmed - FROM transactions AS t + FROM $this->table AS t LEFT JOIN blocks AS b ON t.block_id = b.id LEFT JOIN accounts AS a