diff --git a/dev_mvc/controller/MVCController.php b/dev_mvc/controller/MVCController.php index 09600ac..48e83fa 100644 --- a/dev_mvc/controller/MVCController.php +++ b/dev_mvc/controller/MVCController.php @@ -70,7 +70,7 @@ class MVCController{ if(file_exists($this->testaction)){ //execute testaction //require_once($this->testaction); - $testactionClassname = "\model\testactions\\". "TA_".$_POST['testaction']; + $testactionClassname = '\model\testactions\\'. "TA_".$_POST['testaction']; $testactionInstance = new $testactionClassname(); }