Commit ed9a4204 authored by Anthony.Suerte's avatar Anthony.Suerte

Admin User Exception Handler

parent 4d57868a
...@@ -27,6 +27,7 @@ class ControlAdminUser extends LogicAdminUser { ...@@ -27,6 +27,7 @@ class ControlAdminUser extends LogicAdminUser {
exit(); exit();
}); });
try{
// アクション実行 // アクション実行
$this -> logic(); $this -> logic();
...@@ -52,6 +53,9 @@ class ControlAdminUser extends LogicAdminUser { ...@@ -52,6 +53,9 @@ class ControlAdminUser extends LogicAdminUser {
} else { } else {
require_once($this -> getSystemHTML('TEMPLATE_ADMIN_USER_LIST_PATH', $this -> dispHTML())); require_once($this -> getSystemHTML('TEMPLATE_ADMIN_USER_LIST_PATH', $this -> dispHTML()));
} }
} catch(Exception $ex){
header("Location: /");
}
} }
} }
?> ?>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment