Fix missing count of redirects in foot of table

This commit is contained in:
ohartl 2016-02-17 23:18:05 +01:00
parent 5fc9a7de91
commit a6191f0e6d

View file

@ -71,4 +71,12 @@ if(!$result = $db->query($sql)){
</td>
</tr>
<?php endwhile; ?>
</tbody>
<?php if ($result->num_rows > 0): ?>
<tfoot>
<tr>
<th><?php echo $result->num_rows;?> Redirects</th>
</tr>
</tfoot>
<?php endif; ?>
</table>