Use new confirmation box

This commit is contained in:
Laurent Destailleur 2009-07-27 00:11:33 +00:00
parent 498a3b3546
commit 5b040dd4e9

View File

@ -112,7 +112,7 @@ if ($_POST["action"] == 'update' && $user->rights->projet->creer)
}
}
if ($_POST["action"] == 'confirm_delete' && $_POST["confirm"] == "yes" && $user->rights->projet->supprimer)
if ($_REQUEST["action"] == 'confirm_delete' && $_REQUEST["confirm"] == "yes" && $user->rights->projet->supprimer)
{
$projet = new Project($db);
$projet->id = $_GET["id"];
@ -201,7 +201,7 @@ else
if ($_GET["action"] == 'delete')
{
$ret=$html->form_confirm($_SERVER["PHP_SELF"]."?id=".$_GET["id"],$langs->trans("DeleteAProject"),$langs->trans("ConfirmDeleteAProject"),"confirm_delete");
$ret=$html->form_confirm($_SERVER["PHP_SELF"]."?id=".$_GET["id"],$langs->trans("DeleteAProject"),$langs->trans("ConfirmDeleteAProject"),"confirm_delete",'','',1);
if ($ret == 'html') print '<br>';
}