mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
voters.php: Use "<ul></ul>" for the list of voters
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
8e412cb5b0
commit
caf997d9b1
1 changed files with 5 additions and 5 deletions
|
@ -17,11 +17,11 @@ if ($atype == 'Trusted User' || $atype== 'Developer'):
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h2>Votes for <a href="<?php echo get_pkg_uri(pkgname_from_id($pkgid)); ?>"><?php echo pkgname_from_id($pkgid) ?></a></h2>
|
<h2>Votes for <a href="<?php echo get_pkg_uri(pkgname_from_id($pkgid)); ?>"><?php echo pkgname_from_id($pkgid) ?></a></h2>
|
||||||
<div class="boxbody">
|
<div class="boxbody">
|
||||||
|
<ul>
|
||||||
<?php
|
<?php while (list($indx, $row) = each($votes)): ?>
|
||||||
while (list($indx, $row) = each($votes)): ?>
|
<li><a href="<?php echo get_uri('/account/'); ?>?Action=AccountInfo&ID=<?php echo $row['UsersID'] ?>"><?php echo htmlspecialchars($row['Username']) ?></a></li>
|
||||||
<a href="<?php echo get_uri('/account/'); ?>?Action=AccountInfo&ID=<?php echo $row['UsersID'] ?>"><?php echo htmlspecialchars($row['Username']) ?></a><br />
|
<?php endwhile; ?>
|
||||||
<?php endwhile; ?>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue