remove trailing white-spaces from app/views/issues/_relations.rhtml.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6340 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-02 12:38:31 +00:00
parent 767244db19
commit 573ed05832
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
<td class="status"><%=h relation.other_issue(@issue).status.name %></td>
<td class="start_date"><%= format_date(relation.other_issue(@issue).start_date) %></td>
<td class="due_date"><%= format_date(relation.other_issue(@issue).due_date) %></td>
<td class="buttons"><%= link_to_remote(image_tag('link_break.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :id => relation},
<td class="buttons"><%= 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') %></td>
</tr>
@ -28,7 +28,7 @@
</form>
<% end %>
<% remote_form_for(:relation, @relation,
<% remote_form_for(:relation, @relation,
:url => {:controller => 'issue_relations', :action => 'create', :issue_id => @issue},
:method => :post,
:complete => "Form.Element.focus('relation_issue_to_id');",