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("]}"); } }