Project

General

Profile

Actions

Defect #5473

closed

adding parent when cross project

Added by Burt Culver almost 14 years ago. Updated over 12 years ago.

Status:
Closed
Priority:
Normal
Category:
Issues
Target version:
-
Start date:
2010-05-08
Due date:
% Done:

0%

Estimated time:
Resolution:
Wont fix
Affected version:

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


Related issues

Related to Redmine - Feature #5487: Allow subtasks to cross projectsClosedJean-Philippe Lang2010-05-09

Actions
Actions #1

Updated by Felix Schäfer almost 14 years ago

  • 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.

Actions #2

Updated by Jean-Philippe Lang almost 14 years ago

  • 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.

Actions #3

Updated by Burt Culver almost 14 years ago

#5487 created.

Actions #4

Updated by Anonymous over 12 years ago

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

Actions

Also available in: Atom PDF