From d66a99486376939d64f8a5d9032dcc516f7b1195 Mon Sep 17 00:00:00 2001 From: Date: Wed, 5 Sep 2007 11:47:06 -0400 Subject: [PATCH] swap around the recent quickvotes --- 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 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? -- 2.30.2