Add 'warned' table column

This commit is contained in:
Ruan 2015-06-14 17:41:45 +02:00
parent 8f005a0c78
commit ef4f86399e

View File

@ -27,6 +27,9 @@
<th> <th>
<div style="text-align: center;">Warned Until</div> <div style="text-align: center;">Warned Until</div>
</th> </th>
<th>
<div style="text-align: center;">Received Warning?</div>
</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -50,6 +53,9 @@
echo $expiresResult; echo $expiresResult;
?> ?>
</td> </td>
<td>
<?php echo $row['warned'] == 1 ? "Yes" : "No"; ?>
</td>
</tr> </tr>
<?php } <?php }
?> ?>