diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-30 21:24:18 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-30 21:24:18 +0000 |
commit | 252804f7da50f73ed7de9561c87c5a34140d2eab (patch) | |
tree | 1000feb3c449495c54dc0b7e3bfb2757b66bf847 /app/helpers/issues_helper.rb | |
parent | be6199add30b888fb6706a9f7c0010750bda7460 (diff) | |
download | redmine-252804f7da50f73ed7de9561c87c5a34140d2eab.tar.gz redmine-252804f7da50f73ed7de9561c87c5a34140d2eab.zip |
Redirect to the parent issue after adding a subtask.
git-svn-id: http://svn.redmine.org/redmine/trunk@16317 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/issues_helper.rb')
-rw-r--r-- | app/helpers/issues_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index bf692285b..f95338284 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -184,7 +184,7 @@ module IssuesHelper :parent_issue_id => issue } attrs[:tracker_id] = issue.tracker unless issue.tracker.disabled_core_fields.include?('parent_issue_id') - link_to(l(:button_add), new_project_issue_path(issue.project, :issue => attrs)) + link_to(l(:button_add), new_project_issue_path(issue.project, :issue => attrs, :back_url => issue_path(issue))) end def trackers_options_for_select(issue) |