[API] Replaced die(); with exit(); due to code conventions

master
ntimo 2019-10-04 08:37:30 +02:00
parent 08350d9a95
commit 6372df21fe
No known key found for this signature in database
GPG Key ID: 3AF3627FB0440D55
1 changed files with 10 additions and 10 deletions

View File

@ -134,7 +134,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'type' => 'error', 'type' => 'error',
'msg' => 'only POST method is allowed' 'msg' => 'only POST method is allowed'
)); ));
die(); exit();
} }
switch ($category) { switch ($category) {
case "time_limited_alias": case "time_limited_alias":
@ -213,7 +213,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'msg' => 'route not found' 'msg' => 'route not found'
)); ));
unset($_POST); unset($_POST);
die(); exit();
} }
break; break;
case "get": case "get":
@ -228,7 +228,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'msg' => 'only GET method is allowed' 'msg' => 'only GET method is allowed'
)); ));
unset($_POST); unset($_POST);
die(); exit();
} }
switch ($category) { switch ($category) {
case "rspamd": case "rspamd":
@ -595,7 +595,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'type' => 'error', 'type' => 'error',
'msg' => 'route not found' 'msg' => 'route not found'
)); ));
die(); exit();
} }
break; break;
case "mailbox": case "mailbox":
@ -1067,7 +1067,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'type' => 'error', 'type' => 'error',
'msg' => 'route not found' 'msg' => 'route not found'
)); ));
die(); exit();
} }
break; break;
case "delete": case "delete":
@ -1101,7 +1101,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'type' => 'error', 'type' => 'error',
'msg' => 'only POST method is allowed' 'msg' => 'only POST method is allowed'
)); ));
die(); exit();
} }
switch ($category) { switch ($category) {
case "alias": case "alias":
@ -1190,7 +1190,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'msg' => 'route not found' 'msg' => 'route not found'
)); ));
unset($_POST); unset($_POST);
die(); exit();
} }
break; break;
case "edit": case "edit":
@ -1226,7 +1226,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'type' => 'error', 'type' => 'error',
'msg' => 'only POST method is allowed' 'msg' => 'only POST method is allowed'
)); ));
die(); exit();
} }
switch ($category) { switch ($category) {
case "bcc": case "bcc":
@ -1343,7 +1343,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'msg' => 'route not found' 'msg' => 'route not found'
)); ));
unset($_POST); unset($_POST);
die(); exit();
} }
break; break;
// return no route found if no case is matched // return no route found if no case is matched
@ -1354,7 +1354,7 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
'msg' => 'route not found' 'msg' => 'route not found'
)); ));
unset($_POST); unset($_POST);
die(); exit();
} }
} }
} }