My first gigantic-blob commit....
[selectricity-live] / app / controllers / quickvote_controller.rb
index da2903d1a01fa3fecf1f5d0a665c49801f5ff538..d8d3d59e59139b9499c70c514cc77b8442203359 100644 (file)
@@ -161,14 +161,13 @@ class QuickvoteController < ApplicationController
     redirect_to quickvote_url( :ident => params[:ident] )
   end
                
-  def mapvoters
+  def list_voters
     @map = GMap.new("map_div_id") 
     @map.control_init(:large_map => true, :map_type => true) 
     center = nil
-
-    QuickVote.ident_to_quickvote(params[:id]).voters.each do |voter|
+    @election=QuickVote.ident_to_quickvote(params[:id])
+    @election.voters.each do |voter|
       next unless voter.ipaddress
-
       location = GeoKit::Geocoders::IpGeocoder.geocode(voter.ipaddress)
       next unless location.lng and location.lat
 

Benjamin Mako Hill || Want to submit a patch?