Allow all text in hour

This commit is contained in:
Simon Leblanc 2011-05-29 03:39:36 +02:00
parent 9a708f2cef
commit 515ec353d7

View File

@ -85,7 +85,8 @@ if (!issetAndNoEmpty('nom', $_SESSION) && !issetAndNoEmpty('adresse', $_SESSION)
$choixdate.=","; $choixdate.=",";
$choixdate .= $_SESSION["totalchoixjour"][$i]; $choixdate .= $_SESSION["totalchoixjour"][$i];
$choixdate.="@"; $choixdate.="@";
$choixdate .= $_SESSION["horaires$i"][$j]; // On remplace la virgule et l'arobase pour ne pas avoir de problème par la suite
$choixdate .= str_replace(array(',', '@'), array(',', '@'), $_SESSION["horaires$i"][$j]);
} }
} }
} }
@ -461,8 +462,8 @@ if (!issetAndNoEmpty('nom', $_SESSION) && !issetAndNoEmpty('adresse', $_SESSION)
} elseif ($_POST["horaires$i"][$j]=="") { //Si la case est vide } elseif ($_POST["horaires$i"][$j]=="") { //Si la case est vide
unset($_SESSION["horaires$i"][$j]); unset($_SESSION["horaires$i"][$j]);
} else { //pour tout autre format, message d'erreur } else { //pour tout autre format, message d'erreur
$errheure[$i][$j]=true; //$errheure[$i][$j]=true;
$erreur=true; //$erreur=true;
$_SESSION["horaires$i"][$j] = $_POST["horaires$i"][$j]; $_SESSION["horaires$i"][$j] = $_POST["horaires$i"][$j];
} }
} }