X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/fc0a6a8d7ea15bcdb27ebdd58721401c7045c6e0..008cc97a2f0d84b4de46f2125133afe6c7f620c7:/app/models/full_voter.rb diff --git a/app/models/full_voter.rb b/app/models/full_voter.rb old mode 100755 new mode 100644 index 04071a0..980fb5c --- a/app/models/full_voter.rb +++ b/app/models/full_voter.rb @@ -5,7 +5,7 @@ class FullVoter < Voter def create_password token_generator = UniqueTokenGenerator.new( 16 ) until password and not password.empty? \ - and Voter.find_all( [ "password = ?", password ]).empty? + and Voter.find(:all, :conditions => [ "password = ?", password ]).empty? self.password = token_generator.token end end