diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2013-09-03 12:53:02 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2013-09-03 12:53:58 +0200 |
commit | 3130a887e899a34ee826d5c2daf1bfbe1ba93351 (patch) | |
tree | 28374cc71271da9649933849dd26cb878ac9e8d9 /web/html/tu.php | |
parent | 40fd73b66850d6706dc1a208362af8a5704573ff (diff) | |
download | aurweb-3130a887e899a34ee826d5c2daf1bfbe1ba93351.tar.xz |
Move "Add Proposal" link to "Current Votes"
The page this links to allows for adding an item to the list of current
votes. Move the link accordingly.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/tu.php')
-rw-r--r-- | web/html/tu.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/web/html/tu.php b/web/html/tu.php index fdccdb4..a6aa292 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -109,20 +109,12 @@ if ($atype == "Trusted User" || $atype == "Developer") { $type = __("Current Votes"); $nextresult = 0; include("tu_list.php"); -?> -<?php $result = past_proposal_list($order, $lim); - $type = __("Past Votes"); $nextresult = proposal_count(); include("tu_list.php"); -?> -<div class="box"> - <p><a href="<?= get_uri('/addvote/'); ?>"><?= __("Add Proposal") ?></a></p> -</div> - </p> -<?php + $result = last_votes_list(); include("tu_last_votes_list.php"); } |