]> git.openstreetmap.org Git - rails.git/blobdiff - app/mailers/user_mailer.rb
Use rails tokens for email changes
[rails.git] / app / mailers / user_mailer.rb
index 0894b972d7e0735d2e146054636d93a923f0b7ef..4e15a296a552a32b86ae7227a883483f34bc8100 100644 (file)
@@ -25,7 +25,7 @@ class UserMailer < ApplicationMailer
     with_recipient_locale user do
       @address = user.new_email
       @url = url_for(:controller => "confirmations", :action => "confirm_email",
-                     :confirm_string => token.token)
+                     :confirm_string => token)
 
       mail :to => user.new_email,
            :subject => t(".subject")
@@ -34,7 +34,7 @@ class UserMailer < ApplicationMailer
 
   def lost_password(user, token)
     with_recipient_locale user do
-      @url = user_reset_password_url(:token => token.token)
+      @url = user_reset_password_url(:token => token)
 
       mail :to => user.email,
            :subject => t(".subject")