error 400

pull/5/head
Gnieark 9 years ago
parent 2aa1a39d92
commit 8163765bca

@ -119,4 +119,4 @@ if($currentArena == ""){
<footer>
</footer>
</body>
</html>
</html>

@ -86,8 +86,12 @@ function error($code,$message){
header("HTTP/1.0 404 Not Found");
echo '<!DOCTYPE html><html lang="fr"><head><meta charset="UTF-8" /><title>Page Not found</title></head><body><p>'.$message.'</p></body></html>';
die;
case 400:
header ("HTTP/1.0 400 Bad Request");
echo '<!DOCTYPE html><html lang="fr"><head><meta charset="UTF-8" /><title>Bad request</title></head><body><p>'.$message.'</p></body></html>';
die;
default:
die;
break;
}

Loading…
Cancel
Save