Passage de la colonne ''delivré'' à ''statut''

This commit is contained in:
Pierre-Lin Bonnemaison 2015-09-23 15:22:05 +02:00
parent 1e001d3079
commit 59f0023c96
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
<th>Numéro</th>
<th>Message</th>
<th>Date</th>
<th>Delivré</th>
<th>Statut</th>
</tr>
</thead>
<tbody>
@ -55,7 +55,7 @@
<td><?php secho($send['target']); ?></td>
<td><?php secho($send['content']); ?></td>
<td><?php secho($send['at']); ?></td>
<td><?php secho($send['delivered'] ? 'Oui' : 'Non'); ?></td>
<td><?php secho($send['delivered'] ? 'Délivré' : ($send['failed'] ? 'Échoué' : 'Inconnu')); ?></td>
</tr>
<?php
}