Fixed all triggerable DeprecationWarnings. BE ON LOOKOUT FOR REGRESSIONS.
[selectricity-live] / app / models / quick_vote.rb
index ad727170f036c2b60019ffe6d7a63759d6ddfd8f..fef4ef86125bd98f3c2f91ed58a0795262004792 100644 (file)
@@ -88,7 +88,7 @@ class QuickVote < Election
     if ident.match(/^\d+$/)
       quickvote = QuickVote.find(ident)
     else
-      quickvote = QuickVote.find_all(["name = ?", ident])[0]
+      quickvote = QuickVote.find(:all, :conditions => ["name = ?", ident])[0]
     end
 
     return quickvote

Benjamin Mako Hill || Want to submit a patch?