quick fix

This commit is contained in:
Andreas 2019-09-18 18:09:14 +02:00
parent b44b0471a6
commit 7c009bcd96

View File

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