diff options
author | canyonknight <canyonknight@gmail.com> | 2014-01-20 20:42:44 -0500 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-01-22 18:27:42 +0100 |
commit | 1e9d539acfb609dd7a6f085295f0d068d69cb077 (patch) | |
tree | 3be78a61115771818f3284bbb632245119ff2c73 /web/template/pkg_details.php | |
parent | 81d4cc13dcae2f159ed937d4ce41e1df7d3c82b0 (diff) | |
download | aurweb-1e9d539acfb609dd7a6f085295f0d068d69cb077.tar.xz |
Further optimize voters.php to only need the package name
* Extends changes in 81d4cc13dcae2f159ed937d4ce41e1df7d3c82b0
* Modify getvotes() to use the package name rather than package ID
* Rename getvotes() to votes_for_pkgname() for clarity with new changes
* Modify routing framework and links to now use package names for voters.php
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.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index bc20a22..bd08282 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -194,7 +194,7 @@ if ($row["MaintainerUID"]): <?php if ($USE_VIRTUAL_URLS): ?> <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> + <td><a href="<?= get_uri('/voters/'); ?>?N=<?= htmlspecialchars($row['Name'], ENT_QUOTES) ?>"><?= $votes ?></a></td> <?php endif; ?> <?php else: ?> <td><?= $votes ?></td> |