From eec1f1b670fe786d003e760ba0f0df348507c529 Mon Sep 17 00:00:00 2001 From: Date: Wed, 5 Sep 2007 12:04:58 -0400 Subject: [PATCH] fixed recent quickvotes for real --- app/controllers/front_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/front_controller.rb b/app/controllers/front_controller.rb index 4e36ad4..8b8ae68 100644 --- a/app/controllers/front_controller.rb +++ b/app/controllers/front_controller.rb @@ -5,7 +5,7 @@ class FrontController < ApplicationController require_dependency "account" def index - @quickvotes = QuickVote.find(:all).sort {|a,b| a.enddate <=> b.enddate}[0..1] + @quickvotes = QuickVote.find(:all).sort {|a,b| b.startdate <=> a.startdate}[0..1] # if the person claims they are logged in if logged_in? -- 2.30.2