From 8df6eee510cf996d34ae1d7452eacd92793cfc18 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Sat, 27 May 2006 11:01:04 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20fl=E8ches=20d'ordonnancement=20des=20pr?= =?UTF-8?q?oduits=20sur=20les=20commandes=20et=20les=20propales?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/commande/fiche.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php index 84ae9326a26..651d1bca195 100644 --- a/htdocs/commande/fiche.php +++ b/htdocs/commande/fiche.php @@ -302,13 +302,13 @@ if ($_GET['action'] == 'modif' && $user->rights->commande->creer) if ($_GET['action'] == 'up' && $user->rights->commande->creer) { - $commande = new Commande($db); + $commande = new Commande($db,'',$_GET['id']); $commande->line_up($_GET['rowid']); } if ($_GET['action'] == 'down' && $user->rights->commande->creer) { - $commande = new Commande($db); + $commande = new Commande($db,'',$_GET['id']); $commande->line_down($_GET['rowid']); }