Skip to content

Commit

Permalink
Fix #73 part 1. - Incorrect I18n.t string.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndbroadbent committed Sep 28, 2011
1 parent c62ef17 commit d65afe0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/models/notifier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Notifier < ActionMailer::Base
def password_reset_instructions(user)
@edit_password_url = edit_password_url(user.perishable_token)

mail(:subject => "Fat Free CRM: " + I18n.t(:password_reset_instructions),
mail(:subject => "Fat Free CRM: " + I18n.t(:password_reset_instruction),
:to => user.email,
:from => "Fat Free CRM <noreply@fatfreecrm.com>",
:date => Time.now)
Expand All @@ -41,3 +41,4 @@ def dropbox_ack_notification(user, from, email, mediator_links)
end

end

0 comments on commit d65afe0

Please sign in to comment.