fix test existance arene
This commit is contained in:
parent
20a547c05c
commit
a04450f951
12
src/act.php
12
src/act.php
|
@ -7,10 +7,14 @@ switch($_POST['act']){
|
|||
$alerts="";
|
||||
|
||||
//botGame -> doit exister
|
||||
if(!in_array($_POST['botGame'],$arenas)){
|
||||
//pour le Debug
|
||||
print_r($_POST);
|
||||
print_r($arenas);
|
||||
$arenaExists=false;
|
||||
foreach($arenas as $arena){
|
||||
if($_POST['botGame'] == $arena['id']){
|
||||
$arenaExists=true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!$arenaExists){
|
||||
error(404,"wrong post parameter");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user