summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Korpel <marcel.korpel@gmail.com>2015-07-08 03:36:05 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-08-08 12:59:23 +0200
commit4ca87473964a6da45bd6b8a1679afcdc1a0694af (patch)
treead0cceebcbb817f74794df2e75094799c02191a5
parent828506e868aea994d8fb842ac1391d439cecca69 (diff)
downloadaurweb-4ca87473964a6da45bd6b8a1679afcdc1a0694af.tar.xz
Remove superfluous close tags
These are already output by html_action_link. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--web/template/pkgbase_actions.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/template/pkgbase_actions.php b/web/template/pkgbase_actions.php
index 61ad18f..c7428ee 100644
--- a/web/template/pkgbase_actions.php
+++ b/web/template/pkgbase_actions.php
@@ -28,15 +28,15 @@
<?php endif; ?>
<?php if (has_credential(CRED_PKGBASE_EDIT_COMAINTAINERS, array($row["MaintainerUID"]))): ?>
- <li><?= html_action_link($base_uri . 'comaintainers/', __('Manage Co-Maintainers')) ?></a></li>
+ <li><?= html_action_link($base_uri . 'comaintainers/', __('Manage Co-Maintainers')) ?></li>
<?php endif; ?>
<li><span class="flagged"><?php if ($row["RequestCount"] > 0) { echo _n('%d pending request', '%d pending requests', $row["RequestCount"]); } ?></span></li>
- <li><?= html_action_link($base_uri . 'request/', __('File Request')) ?></a></li>
+ <li><?= html_action_link($base_uri . 'request/', __('File Request')) ?></li>
<?php if (has_credential(CRED_PKGBASE_DELETE)): ?>
- <li><?= html_action_link($base_uri . 'delete/', __('Delete Package')) ?></a></li>
- <li><?= html_action_link($base_uri . 'merge/', __('Merge Package')) ?></a></li>
+ <li><?= html_action_link($base_uri . 'delete/', __('Delete Package')) ?></li>
+ <li><?= html_action_link($base_uri . 'merge/', __('Merge Package')) ?></li>
<?php endif; ?>
<?php if ($uid && $row["MaintainerUID"] === NULL): ?>