Variety of small changes (mostly to properties) plus a few "in the
[selectricity] / app / models / quick_vote.rb
old mode 100644 (file)
new mode 100755 (executable)
index fba31a8..ab97e61
@@ -16,18 +16,14 @@ class QuickVote < Election
   
   def initialize(params={})
     super
-    self.enddate =  DateTime.now + 30
+    self.enddate =  Time.now + 30.days
     self.active = 1
     self.anonymous = 1
     self.quickvote = 1
   end
 
-  def candidatelist=(candstring='')
-    @raw_candidates = candstring.split(';').collect {|cand| cand.strip }
-  end
-
-  def candidatelist
-    @raw_candidates.join("; ")
+  def candidatelist=(candlist)
+    @raw_candidates = candlist
   end
 
   def name

Benjamin Mako Hill || Want to submit a patch?