diff options
author | Xavier Noria <fxn@hashref.com> | 2011-04-19 20:48:39 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-04-19 21:00:15 +0200 |
commit | 3265516c50abe2b6946fc724fa50c1cf522126d3 (patch) | |
tree | fc6a00fa20e09dcd679937ba597db3d2186e4465 /actionmailer/lib/action_mailer | |
parent | a1639ad7524127be0a9e9398dc2ccc8c6629adee (diff) | |
download | rails-3265516c50abe2b6946fc724fa50c1cf522126d3.tar.gz rails-3265516c50abe2b6946fc724fa50c1cf522126d3.tar.bz2 rails-3265516c50abe2b6946fc724fa50c1cf522126d3.zip |
brings a #:nodoc: back
Diffstat (limited to 'actionmailer/lib/action_mailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index bf7e50596a..06de43b76f 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -688,7 +688,7 @@ module ActionMailer #:nodoc: # Translates the +subject+ using Rails I18n class under <tt>[:actionmailer, mailer_scope, action_name]</tt> scope. # If it does not find a translation for the +subject+ under the specified scope it will default to a # humanized version of the <tt>action_name</tt>. - def default_i18n_subject + def default_i18n_subject #:nodoc: mailer_scope = self.class.mailer_name.gsub('/', '.') I18n.t(:subject, :scope => [mailer_scope, action_name], :default => action_name.humanize) end |