From 530ac5178201b16bc46089b89f53d076723d37b2 Mon Sep 17 00:00:00 2001 From: Andreas Date: Mon, 30 Sep 2019 15:00:20 +0200 Subject: [PATCH] trying to fix --- dev_mvc/controller/MVCController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }