mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
This commit is contained in:
parent
828506e868
commit
4ca8747396
1 changed files with 4 additions and 4 deletions
|
@ -28,15 +28,15 @@
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php if (has_credential(CRED_PKGBASE_EDIT_COMAINTAINERS, array($row["MaintainerUID"]))): ?>
|
<?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; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<li><span class="flagged"><?php if ($row["RequestCount"] > 0) { echo _n('%d pending request', '%d pending requests', $row["RequestCount"]); } ?></span></li>
|
<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)): ?>
|
<?php if (has_credential(CRED_PKGBASE_DELETE)): ?>
|
||||||
<li><?= html_action_link($base_uri . 'delete/', __('Delete Package')) ?></a></li>
|
<li><?= html_action_link($base_uri . 'delete/', __('Delete Package')) ?></li>
|
||||||
<li><?= html_action_link($base_uri . 'merge/', __('Merge Package')) ?></a></li>
|
<li><?= html_action_link($base_uri . 'merge/', __('Merge Package')) ?></li>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php if ($uid && $row["MaintainerUID"] === NULL): ?>
|
<?php if ($uid && $row["MaintainerUID"] === NULL): ?>
|
||||||
|
|
Loading…
Add table
Reference in a new issue