fix php parse error

This commit is contained in:
Gnieark 2016-05-12 17:08:20 +02:00
parent 0ccdfd6047
commit 2865b4b384

View File

@ -120,7 +120,7 @@ switch ($_POST['act']){
//tester si 4 pions allignés diagonale vers la droite
if((!$wins) && ($i < 4) && ($j < 3)){
$wins=true;
for($x = $i+1; $y = $j+1; $x < $i+4 ; $x++; $y++){
for($x = $i+1, $y = $j+1; $x < $i+4 ; $x++, $y++){
if($_SESSION['map'][$j][$x] <> $you){
$wins=false;
break;
@ -130,7 +130,7 @@ switch ($_POST['act']){
//tester si 4 pions allignés diagonale vers la gauche
if((!$wins) && ($i > 3) && ($j < 3)){
$wins=true;
for($x = $i-1; $y = $j+1; $x > $i - 4 ; $x++; $y++){
for($x = $i-1, $y = $j+1; $x > $i - 4 ; $x++, $y++){
if($_SESSION['map'][$j][$x] <> $you){
$wins=false;
break;