From 7c009bcd963d9b54e88da8a8755c4f9641b3b3f3 Mon Sep 17 00:00:00 2001 From: Andreas Date: Wed, 18 Sep 2019 18:09:14 +0200 Subject: [PATCH] quick fix --- dev_mvc/controller/MVCController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev_mvc/controller/MVCController.php b/dev_mvc/controller/MVCController.php index bf234c3..13e4eb9 100644 --- a/dev_mvc/controller/MVCController.php +++ b/dev_mvc/controller/MVCController.php @@ -68,11 +68,11 @@ class MVCController{ //check if testaction is valid if(file_exists($this->testaction)){ - echo('"output": ['); + echo('{"output": ['); //execute testaction include_once($this->testaction); TestUtils::log('End of output', "OK", false); - echo("]"); + echo("]}"); } }