summaryrefslogtreecommitdiff
path: root/poll.go
diff options
context:
space:
mode:
authorJoe Robinson <joe@mumsnet.com>2014-07-25 15:42:33 +0100
committerJoe Robinson <joe@mumsnet.com>2014-07-25 15:42:33 +0100
commit9325bafbbf17da50dd8e5855e12fdff4ed590ea1 (patch)
treee4a3c6057647a9a97f67272b529839c501960e33 /poll.go
parent07884e5c9b4fe423d10b1f4a9b6366f7d81cffb2 (diff)
Fixed poll list to list the 5 most recent polls
Diffstat (limited to 'poll.go')
-rw-r--r--poll.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/poll.go b/poll.go
index 8a204f1..eda5a8f 100644
--- a/poll.go
+++ b/poll.go
@@ -148,7 +148,7 @@ func hasUserVotedInPoll(db *sqlite3.Conn, poll Poll, user User) bool {
func getRecentPolls(db *sqlite3.Conn) ([]Poll, error) {
- sql := "SELECT * FROM polls LIMIT 5"
+ sql := "SELECT * FROM polls ORDER BY id DESC LIMIT 5"
s, err := db.Query(sql)
row := make(sqlite3.RowMap)
var polls = make([]Poll, 5)