From 996d94e68bba4390e1279ba265ec9fa0a6d4269f Mon Sep 17 00:00:00 2001 From: jlb Date: Fri, 10 Jan 2003 16:02:31 +0000 Subject: [PATCH] correction (enfin j'espere) d'un bug qui remttais tjs le statut d'un adherents a 'a valider' a chaque edition de l'adherent --- htdocs/adherents/edit.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htdocs/adherents/edit.php b/htdocs/adherents/edit.php index 8a74da35847..44108cd545f 100644 --- a/htdocs/adherents/edit.php +++ b/htdocs/adherents/edit.php @@ -52,6 +52,8 @@ if ($action == 'update') $adh->typeid = $HTTP_POST_VARS["type"]; $adh->commentaire = $HTTP_POST_VARS["comment"]; $adh->morphy = $HTTP_POST_VARS["morphy"]; + // recuperation du statut + $adh->statut = $HTTP_POST_VARS["statut"]; if ($adh->update($user->id) ) { @@ -122,6 +124,7 @@ if ($rowid) print ""; print ""; + print "statut."\">"; $htmls = new Form($db);