mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Exclude running votes from "Last Votes by TU"
Showing running votes potentially allows for tracking votes and associating yes/no/abstain votes with specific TUs. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
7b0495cee2
commit
86d2efaaa0
1 changed files with 4 additions and 1 deletions
|
@ -1003,7 +1003,10 @@ function past_proposal_list($order, $lim) {
|
|||
function last_votes_list() {
|
||||
$dbh = DB::connect();
|
||||
|
||||
$q = "SELECT UserID, MAX(VoteID) AS LastVote FROM TU_Votes GROUP BY UserID ORDER BY VoteID DESC";
|
||||
$q = "SELECT UserID, MAX(VoteID) AS LastVote FROM TU_Votes, ";
|
||||
$q .= "TU_VoteInfo WHERE TU_VoteInfo.ID = TU_Votes.VoteID AND ";
|
||||
$q .= "TU_VoteInfo.End < UNIX_TIMESTAMP() GROUP BY UserID ";
|
||||
$q .= "ORDER BY VoteID DESC";
|
||||
$result = $dbh->query($q);
|
||||
|
||||
$details = array();
|
||||
|
|
Loading…
Add table
Reference in a new issue