From: Date: Wed, 5 Sep 2007 16:04:58 +0000 (-0400) Subject: fixed recent quickvotes for real X-Git-Url: https://projects.mako.cc/source/selectricity/commitdiff_plain/eec1f1b670fe786d003e760ba0f0df348507c529 fixed recent quickvotes for real --- 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?