1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Use self. just to stay in the same pattern.

This commit is contained in:
José Valim 2010-01-21 17:03:13 +01:00
parent b3fd742aea
commit b4707c2bae

View file

@ -71,7 +71,7 @@ module Devise
# Digests the password using the configured encryptor.
def password_digest(password)
self.class.encryptor_class.digest(password, self.class.stretches, password_salt, self.class.pepper)
self.class.encryptor_class.digest(password, self.class.stretches, self.password_salt, self.class.pepper)
end
module ClassMethods