diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-18 07:47:15 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-18 08:07:17 +0200 |
commit | caf997d9b1942a333af9126f451764599548b308 (patch) | |
tree | 7daa5effd1da61d34f2d4a29ac3f43d47cfa7be5 /web/html | |
parent | 8e412cb5b0981ad3c604c99f73e4cbae35973863 (diff) | |
download | aur-caf997d9b1942a333af9126f451764599548b308.tar.gz aur-caf997d9b1942a333af9126f451764599548b308.tar.xz |
voters.php: Use "<ul></ul>" for the list of voters
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/voters.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/html/voters.php b/web/html/voters.php index c7c59a24..0ec77ecf 100644 --- a/web/html/voters.php +++ b/web/html/voters.php @@ -17,11 +17,11 @@ if ($atype == 'Trusted User' || $atype== 'Developer'): <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> <div class="boxbody"> - -<?php - while (list($indx, $row) = each($votes)): ?> - <a href="<?php echo get_uri('/account/'); ?>?Action=AccountInfo&ID=<?php echo $row['UsersID'] ?>"><?php echo htmlspecialchars($row['Username']) ?></a><br /> - <?php endwhile; ?> + <ul> + <?php 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> + <?php endwhile; ?> + </ul> </div> </div> |