X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/ab4adc70d731a74110ea284e8747a4315a946c36..d06c024c7dddeca27c658b668ed313f3f107d2e6:/app/controllers/front_controller.rb diff --git a/app/controllers/front_controller.rb b/app/controllers/front_controller.rb index c4a198d..f84d396 100644 --- a/app/controllers/front_controller.rb +++ b/app/controllers/front_controller.rb @@ -1,3 +1,10 @@ +# Selectricity: Voting Machinery for the Masses +# Copyright (C) 2007, 2008 Benjamin Mako Hill +# Copyright (C) 2007 Massachusetts Institute of Technology +# +# This program is free software. Please see the COPYING file for +# details. + class FrontController < ApplicationController layout 'frontpage' require_dependency "user" @@ -5,7 +12,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| b.startdate <=> a.startdate}[0..1] # if the person claims they are logged in if logged_in?