Can't remember :-(

This commit is contained in:
Rodolphe Quiedeville 2003-01-02 23:52:24 +00:00
parent 91e1425c93
commit 7794df13fe

View File

@ -306,7 +306,22 @@ if ($rowid > 0)
print '<input type="hidden" name="action" value="cotisation">'; print '<input type="hidden" name="action" value="cotisation">';
print '<table cellspacing="0" border="1" width="100%" cellpadding="3">'; print '<table cellspacing="0" border="1" width="100%" cellpadding="3">';
print '<tr><td width="15%">Fin adhésion</td><td width="35%" class="valeur">'.strftime("%d %B %Y",$adh->datefin).'&nbsp;</td>'; print '<tr>';
print '<td rowspan="6">';
print '</td>';
print '<td width="15%">Fin adhésion</td>';
if ($adh->datefin < time())
{
print '<td width="35%" class="delete">';
}
else
{
print '<td width="35%" class="valeur">';
}
print strftime("%d %B %Y",$adh->datefin).'&nbsp;</td>';
print '<td valign="top" width="50%">&nbsp;</td></tr>'; print '<td valign="top" width="50%">&nbsp;</td></tr>';
@ -321,7 +336,7 @@ if ($rowid > 0)
{ {
print_date_select(); print_date_select();
} }
print "</td><td>&nbsp;</td></tr>"; print "</td></tr>";
print "<tr><td>Mode de paiement</td><td>\n"; print "<tr><td>Mode de paiement</td><td>\n";
$paiement = new Paiement($db); $paiement = new Paiement($db);