summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_details.php
diff options
context:
space:
mode:
authorcanyonknight <canyonknight@gmail.com>2012-10-18 17:12:24 -0400
committerLukas Fleischer <archlinux@cryptocrack.de>2012-10-20 18:47:00 +0200
commitcde97a943c68448e216134bbf3024f31535b9e3b (patch)
tree3e6b5453b2589325d511dd1c84d73d1fe97a4b68 /web/template/pkg_details.php
parentc4b5584eef678d46297a7fcc14d65f840d0b8c8c (diff)
downloadaurweb-cde97a943c68448e216134bbf3024f31535b9e3b.tar.xz
pkg_details.php: Add missing XHTML close tags
Signed-off-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_details.php')
-rw-r--r--web/template/pkg_details.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php
index b286664..74f9257 100644
--- a/web/template/pkg_details.php
+++ b/web/template/pkg_details.php
@@ -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>