From 40f3bfafe82986f8fb7f24f788e44bd7759c60af Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Thu, 12 May 2005 15:05:49 +0000 Subject: [PATCH] Bugfix --- htdocs/telephonie/contrat/fiche.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/telephonie/contrat/fiche.php b/htdocs/telephonie/contrat/fiche.php index da62eb4e34e..8cef306a14e 100644 --- a/htdocs/telephonie/contrat/fiche.php +++ b/htdocs/telephonie/contrat/fiche.php @@ -90,7 +90,7 @@ if ($_POST["action"] == 'addpo' && $user->rights->telephonie->ligne->creer) $contrat = new TelephonieContrat($db); $contrat->fetch($_GET["id"]); - $contrat->addpo($_POST["montant"]) ; + $contrat->addpo($_POST["montant"], $user); Header("Location: fiche.php?id=".$contrat->id); }