updated a whole bunch of stuff

This commit is contained in:
2019-05-24 20:18:37 +02:00
parent 4a050eda84
commit ec5a13ccd1
9 changed files with 36 additions and 10 deletions

View File

@@ -3,10 +3,13 @@ class ActionHandler
{
static function doAction(){
$action = '';
if(isset($_GET['action'])){
if(!$action == ''){
include_once("./model/actions/model_".$action."php");
}
$action = $_GET['action'];
}
if(!$action == ''){
include_once("./model/actions/model_".$action.".php");
}
}
}