*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-12-27 21:18:21 +00:00
parent ec364f516e
commit 2183086a0c

View File

@ -46,6 +46,7 @@ if ($action == 'add')
$don->pays = $pays; $don->pays = $pays;
$don->public = $public; $don->public = $public;
$don->projetid = $projetid; $don->projetid = $projetid;
$don->commentaire = $HTTP_POST_VARS["comment"];
$don->modepaiementid = $modepaiement; $don->modepaiementid = $modepaiement;
if ($don->create($user->id) ) if ($don->create($user->id) )
@ -257,7 +258,7 @@ if ($rowid > 0 && $action == 'edit')
* Case 1 * Case 1
*/ */
print "<td align=\"center\" width=\"25%\">-</td>"; print '<td align="center" width="25%"><a href="edit.php?rowid='.$don->id.'">Editer</a></td>';
/* /*
* Case 2 * Case 2
@ -293,7 +294,9 @@ if ($rowid > 0 && $action == 'edit')
{ {
print "<td align=\"center\" width=\"25%\">-</td>"; print "<td align=\"center\" width=\"25%\">-</td>";
} }
/*
* Case 4
*/
if ($don->statut == 0) if ($don->statut == 0)
{ {
print "<td align=\"center\" width=\"25%\">[<a href=\"$PHP_SELF?rowid=$don->id&action=delete\">Supprimer</a>]</td>"; print "<td align=\"center\" width=\"25%\">[<a href=\"$PHP_SELF?rowid=$don->id&action=delete\">Supprimer</a>]</td>";