diff --git a/htdocs/adherents/fiche.php b/htdocs/adherents/fiche.php index 51f4c2ccf2f..7723341dfa4 100644 --- a/htdocs/adherents/fiche.php +++ b/htdocs/adherents/fiche.php @@ -306,8 +306,23 @@ if ($rowid > 0) print ''; print '
| Fin adhésion | '.strftime("%d %B %Y",$adh->datefin).' | '; - + print '|||
| '; + + print ' | '; + + print 'Fin adhésion | '; + if ($adh->datefin < time()) + { + print ''; + } + else + { + print ' | '; + } + print strftime("%d %B %Y",$adh->datefin).' | '; + print '|
| Nouvelle adhésion | "; + print ""; print " | |||
| Mode de paiement | \n"; $paiement = new Paiement($db); | |||