diff options
Diffstat (limited to 'modules/tag')
| -rw-r--r-- | modules/tag/views/admin_tags.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tag/views/admin_tags.html.php b/modules/tag/views/admin_tags.html.php index 5e9613b1..8700fc09 100644 --- a/modules/tag/views/admin_tags.html.php +++ b/modules/tag/views/admin_tags.html.php @@ -17,8 +17,8 @@ <th> <?= t("Photos") ?> </th> <th> <?= t("Actions") ?> </th> </tr> - <? foreach ($tags as $tag): ?> - <tr> + <? foreach ($tags as $i => $tag): ?> + <tr class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>"> <td> <?= $tag->name ?> </td> <td> <?= $tag->count ?> </td> <td> |
