From b2822552349476e5bc2542b0af3f5bb3e4cdb046 Mon Sep 17 00:00:00 2001 From: Andreas Date: Tue, 24 Sep 2019 14:32:18 +0200 Subject: [PATCH] fixed erroneous references --- dev_mvc/model/testactions/TA_TestDBThread.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev_mvc/model/testactions/TA_TestDBThread.php b/dev_mvc/model/testactions/TA_TestDBThread.php index 1dae460..45ff3a0 100644 --- a/dev_mvc/model/testactions/TA_TestDBThread.php +++ b/dev_mvc/model/testactions/TA_TestDBThread.php @@ -6,9 +6,9 @@ class TA_TestDBThread extends TestAction{ parent::__construct(); } function execute(){ - $replies = DBReply::getAllReplies(); + $threads = DBThread::getAllThreads(); echo "
"; - echo (json_encode($replies)); + echo (json_encode($threads)); echo "
"; } } \ No newline at end of file