Skip to content
Snippets Groups Projects
Commit 4f81d4f8 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Bug en mode register_globals=off

parent 369c35bc
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,8 @@ if ($_POST["action"] == 'add_action')
}
else
{
$webcal->heure = $heurehour . $heuremin . '00';
$webcal->duree = ($dureehour * 60) + $dureemin;
$webcal->heure = $_POST["heurehour"] . $_POST["heuremin"] . '00';
$webcal->duree = ($_POST["dureehour"] * 60) + $_POST["dureemin"];
if ($_POST["actionid"] == 5)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment