From 2f58e65ad309b90e1ec617bcc23393809baf3d86 Mon Sep 17 00:00:00 2001 From: Andreas Date: Mon, 30 Sep 2019 14:40:22 +0200 Subject: [PATCH] Fixed a few things --- dev_mvc/index.php | 2 +- dev_mvc/model/testactions/TA_CreateDB.php | 2 +- dev_mvc/model/testactions/TA_PopulateDB.php | 1 + dev_mvc/model/testactions/TA_TestDBReply.php | 4 ++-- dev_mvc/model/testactions/TA_TestDBThread.php | 4 ++-- dev_mvc/model/testactions/TA_TestDBUser.php | 4 ++-- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/dev_mvc/index.php b/dev_mvc/index.php index efc2b0b..0740a85 100644 --- a/dev_mvc/index.php +++ b/dev_mvc/index.php @@ -13,7 +13,7 @@ function autoload($className){ $fileName .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; //echo $fileName; - require ROOT_DIR . '\\' . $fileName; + require ROOT_DIR . '/' . $fileName; } spl_autoload_register('autoload'); diff --git a/dev_mvc/model/testactions/TA_CreateDB.php b/dev_mvc/model/testactions/TA_CreateDB.php index b0e2da9..945d4a9 100644 --- a/dev_mvc/model/testactions/TA_CreateDB.php +++ b/dev_mvc/model/testactions/TA_CreateDB.php @@ -1,6 +1,6 @@