diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-07-06 00:04:47 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-07-06 00:04:47 +0000 |
commit | e1ca4a8663eb85151473d815d5afd84cb9c50c73 (patch) | |
tree | e0208dd580b687fa7e04f743cca49964321aa9fb /app/models | |
parent | b1b721ff6ddae4b2a6bb0ee36338e3a61f838810 (diff) | |
download | redmine-e1ca4a8663eb85151473d815d5afd84cb9c50c73.tar.gz redmine-e1ca4a8663eb85151473d815d5afd84cb9c50c73.zip |
gender neutral source comment at app/models/mailer.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11988 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/mailer.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/mailer.rb b/app/models/mailer.rb index 60d6b206b..5c773c5f1 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -389,7 +389,8 @@ class Mailer < ActionMailer::Base 'List-Id' => "<#{Setting.mail_from.to_s.gsub('@', '.')}>" # Removes the author from the recipients and cc - # if he doesn't want to receive notifications about what he does + # if the author does not want to receive notifications + # about what the author do if @author && @author.logged? && @author.pref.no_self_notified headers[:to].delete(@author.mail) if headers[:to].is_a?(Array) headers[:cc].delete(@author.mail) if headers[:cc].is_a?(Array) |