X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/6df3d73c4a0c52d79f3e8abe5180fbd73953a6a5..9086b07aefc0560832373bb4ba30888d8d43f0d6:/app/controllers/voter_controller.rb diff --git a/app/controllers/voter_controller.rb b/app/controllers/voter_controller.rb index 779e83f..e94f4a7 100644 --- a/app/controllers/voter_controller.rb +++ b/app/controllers/voter_controller.rb @@ -7,7 +7,7 @@ class VoterController < ApplicationController def index password = params[:id] password = params[:vote][:password] if params[:vote] - if @voter = FullVoter.find_all( [ "password = ?", password ] )[0] + if @voter = FullVoter.find(:all, :conditions => [ "password = ?", password ] )[0] render :action => 'fullvote' end end @@ -41,7 +41,7 @@ class VoterController < ApplicationController private def authenticate password = params[:id] - @voter = FullVoter.find_all( [ "password = ?", password ] )[0] + @voter = FullVoter.find(:all, :conditions => [ "password = ?", password ] )[0] end end