Modified the methods in graphs controller so they would work for Selectricity, but...
[selectricity] / app / controllers / quickvote_controller.rb
index 10815b3c590ac19af542240d3cf8ec6d420cb9e9..e7a285b7d45e7d0d8f8c22d2808b33a031a115ed 100644 (file)
@@ -105,11 +105,16 @@ class QuickvoteController < ApplicationController
       
     else
       # record the ip address for posterity
-      @voter.ipaddress = request.env["HTTP_X_FORWARDED_FOR"]
+      @voter.ipaddress = request.env["BLAH"]
       @voter.save
       
-      # toggle the confirmation bit
+      # save the time the vote was made for statistical use, it doesn't
+      #work here unless I use a method that will save it to the db
+      @voter.vote.time = Time.now
+      
+      # toggle the confirmation bit      
       @voter.vote.confirm!
+     
       @voter.reload
       render :action => 'thanks'
     end

Benjamin Mako Hill || Want to submit a patch?