diff options
author | Go MAEDA <maeda@farend.jp> | 2021-04-22 03:07:42 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-04-22 03:07:42 +0000 |
commit | ccd00df71ca30e8f10c8642b7a16763a6e19f6f2 (patch) | |
tree | 1c8407f113f2c15be0a86f1ca3348ce59bc66e4b /app | |
parent | b719565c411fecad195cf966eb79520bd7884269 (diff) | |
download | redmine-ccd00df71ca30e8f10c8642b7a16763a6e19f6f2.tar.gz redmine-ccd00df71ca30e8f10c8642b7a16763a6e19f6f2.zip |
MailHandler raises NameError exception when generating error message (#35100).
Patch by Dmitry Makurin and Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@20959 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/mail_handler.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb index 0fd7f10af..102cd8b75 100644 --- a/app/models/mail_handler.rb +++ b/app/models/mail_handler.rb @@ -227,7 +227,7 @@ class MailHandler < ActionMailer::Base unless handler_options[:no_permission_check] unless user.allowed_to?(:add_issue_notes, issue.project) || user.allowed_to?(:edit_issues, issue.project) - raise UnauthorizedAction, "not allowed to add notes on issues to project [#{project.name}]" + raise UnauthorizedAction, "not allowed to add notes on issues to project [#{issue.project.name}]" end end @@ -276,7 +276,7 @@ class MailHandler < ActionMailer::Base end unless handler_options[:no_permission_check] - raise UnauthorizedAction, "not allowed to add messages to project [#{project.name}]" unless user.allowed_to?(:add_messages, message.project) + raise UnauthorizedAction, "not allowed to add messages to project [#{message.project.name}]" unless user.allowed_to?(:add_messages, message.project) end if !message.locked? |