From 3017c5454b75177c2f516cf908b76f4edcf79e75 Mon Sep 17 00:00:00 2001 From: Andreas Date: Mon, 30 Sep 2019 14:54:42 +0200 Subject: [PATCH] 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 7560fb5..09600ac 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(); }