diff --git a/app/views/issues/_relations.html.erb b/app/views/issues/_relations.html.erb index 4c114c485..205d403f8 100644 --- a/app/views/issues/_relations.html.erb +++ b/app/views/issues/_relations.html.erb @@ -19,9 +19,12 @@ <%=h relation.other_issue(@issue).status.name %> <%= format_date(relation.other_issue(@issue).start_date) %> <%= format_date(relation.other_issue(@issue).due_date) %> -<%= link_to_remote(image_tag('link_break.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :id => relation}, - :method => :delete - }, :title => l(:label_relation_delete)) if authorize_for('issue_relations', 'destroy') %> +<%= link_to_remote( + image_tag('link_break.png'), + { :url => {:controller => 'issue_relations', :action => 'destroy', :id => relation}, + :method => :delete }, + :title => l(:label_relation_delete) + ) if authorize_for('issue_relations', 'destroy') %> <% end %>