mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
pkg_details.php: Add missing XHTML close tags
Signed-off-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
c4b5584eef
commit
cde97a943c
1 changed files with 4 additions and 2 deletions
|
@ -117,6 +117,7 @@ if ($SID && ($uid == $row["MaintainerUID"] ||
|
|||
<a href="<?= get_uri('/packages/'); ?>?C=<?= $row['CategoryID'] ?>"><?= $row['Category'] ?></a>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('License') . ': ' ?></th>
|
||||
<td><?= htmlspecialchars($license) ?></td>
|
||||
|
@ -138,6 +139,7 @@ if ($row["SubmitterUID"]):
|
|||
<?php else: ?>
|
||||
<td>None</td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Maintainer') .': ' ?></th>
|
||||
<?php
|
||||
|
@ -160,9 +162,9 @@ if ($row["MaintainerUID"]):
|
|||
<th><?= __('Votes') . ': ' ?></th>
|
||||
<?php if ($atype == "Developer" || $atype == "Trusted User"): ?>
|
||||
<?php if ($USE_VIRTUAL_URLS): ?>
|
||||
<td><a href="<?= get_pkg_uri($row['Name']); ?>voters/"><?= $votes ?></a>
|
||||
<td><a href="<?= get_pkg_uri($row['Name']); ?>voters/"><?= $votes ?></a></td>
|
||||
<?php else: ?>
|
||||
<td><a href="<?= get_uri('/voters/'); ?>?ID=<?= $pkgid ?>"><?= $votes ?></a>
|
||||
<td><a href="<?= get_uri('/voters/'); ?>?ID=<?= $pkgid ?>"><?= $votes ?></a></td>
|
||||
<?php endif; ?>
|
||||
<?php else: ?>
|
||||
<td><?= $votes ?></td>
|
||||
|
|
Loading…
Add table
Reference in a new issue