summaryrefslogtreecommitdiffstats
path: root/app/helpers
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-01-25 08:06:23 +0000
committerGo MAEDA <maeda@farend.jp>2019-01-25 08:06:23 +0000
commit7ca65bedc03f6e2ed367afb83152bf27e9065284 (patch)
tree066afe31d8e7c3549ccb850ffe4e68f65630dc46 /app/helpers
parenta3e6ae9b3596b3705a918dba25579773c1549092 (diff)
downloadredmine-7ca65bedc03f6e2ed367afb83152bf27e9065284.tar.gz
redmine-7ca65bedc03f6e2ed367afb83152bf27e9065284.zip
Start date and due date in email notifications (#13307).
Patch by Senya Senya. git-svn-id: http://svn.redmine.org/redmine/trunk@17840 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/issues_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb
index 66d3e1f3e..14d43f98e 100644
--- a/app/helpers/issues_helper.rb
+++ b/app/helpers/issues_helper.rb
@@ -321,8 +321,8 @@ module IssuesHelper
def email_issue_attributes(issue, user, html)
items = []
- %w(author status priority assigned_to category fixed_version).each do |attribute|
- unless issue.disabled_core_fields.include?(attribute+"_id")
+ %w(author status priority assigned_to category fixed_version start_date due_date).each do |attribute|
+ if issue.disabled_core_fields.grep(/^#{attribute}(_id)?$/).empty?
if html
items << content_tag('strong', "#{l("field_#{attribute}")}: ") + (issue.send attribute)
else