blob: 741824e58484f7e2643b611ebe2390bc3ca1866d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<div class="center">
<?php if (!empty($errors)) {
echo "<p>";
foreach ($errors as $error) {
echo "{$error["id"]}: {$error["reason"]}<br>\n";
}
echo "</p>";
} ?>
<p><?php echo $deleted_count; ?> of <?php echo $total_count; ?> deleted.</p>
</div>
|