From: Date: Wed, 5 Sep 2007 15:47:06 +0000 (-0400) Subject: swap around the recent quickvotes X-Git-Url: https://projects.mako.cc/source/selectricity-live/commitdiff_plain/d66a99486376939d64f8a5d9032dcc516f7b1195 swap around the recent quickvotes --- diff --git a/app/controllers/front_controller.rb b/app/controllers/front_controller.rb index c4a198d..4e36ad4 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| b.enddate <=> a.enddate}[0..1] + @quickvotes = QuickVote.find(:all).sort {|a,b| a.enddate <=> b.enddate}[0..1] # if the person claims they are logged in if logged_in?