X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/07ff860387aed826ff4046f16a27324c58e4fb3d..ad088c1324d08a65f6f5336bedf7a88a8a8950e7:/app/controllers/election_controller.rb diff --git a/app/controllers/election_controller.rb b/app/controllers/election_controller.rb index 7f87b2e..5c13a81 100644 --- a/app/controllers/election_controller.rb +++ b/app/controllers/election_controller.rb @@ -45,7 +45,7 @@ class ElectionController < ApplicationController @election.user = session[:user] @election.anonymous = 1 @election.startdate = Time.now - + @election.type = 'Election' holder = create_theme_hash unless holder.values.all? {|v| v.has_value?("")} @@ -98,8 +98,10 @@ class ElectionController < ApplicationController end end - #Takes care of uploading custom images -- unnecessarily long, how can I compress? + #Takes care of uploading custom images + #unnecessarily long, how can I compress? def add_theme(prefix) + holder = create_theme_hash unless params[:top_bar][:uploaded_data].to_s.empty? previous = SkinPicture.find(:first, :conditions => ["filename = ?", @election.embed_custom_string + "top_bar.png"]) @@ -232,6 +234,7 @@ class ElectionController < ApplicationController if params.has_key?( :raw_voter_list ) process_incoming_voters( params[:raw_voter_list] ) end + @edit = true @raw_voter_list = RawVoterList.new end