* [ADD] Config module. Work in progress

This commit is contained in:
nuxsmin
2018-02-19 01:51:36 +01:00
parent eda5af40c7
commit faffe5495b
84 changed files with 3955 additions and 683 deletions

View File

@@ -189,7 +189,7 @@ abstract class ControllerBase
try {
echo $this->view->render();
} catch (FileNotFoundException $e) {
debugLog($e->getMessage(), true);
processException($e);
echo $e->getMessage();
}
@@ -205,7 +205,7 @@ abstract class ControllerBase
try {
return $this->view->render();
} catch (FileNotFoundException $e) {
debugLog($e->getMessage(), true);
processException($e);
return $e->getMessage();
}