From d56f916a0e10dc389efc6a532fe7d25f4aec4acd Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 5 Jan 2013 13:23:33 +0000 Subject: [PATCH] Store the other issue in a variable (#10916). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11121 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/_relations.html.erb | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/app/views/issues/_relations.html.erb b/app/views/issues/_relations.html.erb index 108c9bbf1..0cffa8f53 100644 --- a/app/views/issues/_relations.html.erb +++ b/app/views/issues/_relations.html.erb @@ -10,17 +10,18 @@
<% @relations.each do |relation| %> + <% other_issue = relation.other_issue(@issue) -%> - + - - - + + +
<%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %><%= check_box_tag("ids[]", other_issue.id, false, :id => nil) %> <%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %> - <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> - <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %> + <%= h(other_issue.project) + ' - ' if Setting.cross_project_issue_relations? %> + <%= link_to_issue(other_issue, :truncate => 60) %> <%=h relation.other_issue(@issue).status.name %><%= format_date(relation.other_issue(@issue).start_date) %><%= format_date(relation.other_issue(@issue).due_date) %><%=h other_issue.status.name %><%= format_date(other_issue.start_date) %><%= format_date(other_issue.due_date) %> <%= link_to image_tag('link_break.png'), relation_path(relation), :remote => true, -- 2.39.5