From d9efb88d35b5f44473b609e921257ce9941cf7ba Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 30 May 2012 21:40:32 +0200 Subject: [PATCH] Fix: Can edit emailing even when validated. --- htdocs/comm/mailing/fiche.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/comm/mailing/fiche.php b/htdocs/comm/mailing/fiche.php index df601e7556d..858396d9f36 100644 --- a/htdocs/comm/mailing/fiche.php +++ b/htdocs/comm/mailing/fiche.php @@ -816,7 +816,7 @@ else { print "\n\n
\n"; - if ($object->statut == 0 && $user->rights->mailing->creer) + if (($object->statut == 0 || $object->statut == 1) && $user->rights->mailing->creer) { print ''.$langs->trans("EditMailing").''; }