diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-04-26 06:57:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-04-26 06:57:09 +0000 |
commit | 43c9d69bf251a033b2c6d6562e56e91a1442d3da (patch) | |
tree | 4b8893b10ff085d52ae4b3ba0135497ad8959a43 /app/models/mail_handler.rb | |
parent | 709211cb9cc110babfb56e43491ea0dafe9d69b0 (diff) | |
download | redmine-43c9d69bf251a033b2c6d6562e56e91a1442d3da.tar.gz redmine-43c9d69bf251a033b2c6d6562e56e91a1442d3da.zip |
Set default start date on issues created by email if default_issue_start_date_to_creation_date is set (#16655).
git-svn-id: http://svn.redmine.org/redmine/trunk@13104 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/mail_handler.rb')
-rw-r--r-- | app/models/mail_handler.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb index e2dba0e41..1b4600536 100644 --- a/app/models/mail_handler.rb +++ b/app/models/mail_handler.rb @@ -198,6 +198,7 @@ class MailHandler < ActionMailer::Base issue.subject = '(no subject)' end issue.description = cleaned_up_text_body + issue.start_date ||= Date.today if Setting.default_issue_start_date_to_creation_date? # add To and Cc as watchers before saving so the watchers can reply to Redmine add_watchers(issue) |