Defect #5473
closed
adding parent when cross project
Added by Burt Culver over 14 years ago.
Updated over 13 years ago.
Description
Using redmine r:3683 I'm unable to change an issue to have a parent issue that is from a different project with cross_project_issue_relations set to 1. This fixes:
svn diff app/models/issue.rb
Index: app/models/issue.rb
===================================================================
--- app/models/issue.rb (revision 3683)
+++ app/models/issue.rb (working copy)
@ -291,7 +291,7
@
# Checks parent issue assignment
if @parent_issue
if @parent_issue.project_id != project_id
- errors.add :parent_issue_id, :not_same_project
+ errors.add :parent_issue_id, :not_same_project unless Setting.cross_project_issue_relations?
elsif !new_record?
# moving an existing issue
if @parent_issue.root_id != root_id
- Assignee set to Jean-Philippe Lang
- Affected version (unused) set to devel
The cross-project issue relations setting is not for subtasks but only for the related issues feature. AFAIK the subtasks feature is only meant to be used inside a project.
I've assigned this jplang so he can share his thoughts.
- Status changed from New to Closed
- Resolution set to Wont fix
Indeed, subtasks can not belong to a different project.
That's how it works now, fill a feature request if needed.
To add this feature to my copy, I also changed the following inside move_to_project_without_transaction function:
@ -166,7 +166,7
@
issue.fixed_version = nil
end
issue.project = new_project
- if issue.parent && issue.parent.project_id != issue.project_id
+ if issue.parent && issue.parent.project_id != issue.project_id && !Setting.cross_project_issue_relations?
issue.parent_issue_id = nil
end
end
Also available in: Atom
PDF