diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-15 09:28:10 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-15 09:28:10 +0000 |
commit | 4a1550331a29fff2ea584ddb2a735d40c58f987a (patch) | |
tree | 252aec6fcfd5150166e459c05e9f0fd914cdb891 /app/views/issues | |
parent | 81f66f24d7a3aefeda4ea13ed1a093153d0e07ab (diff) | |
download | redmine-4a1550331a29fff2ea584ddb2a735d40c58f987a.tar.gz redmine-4a1550331a29fff2ea584ddb2a735d40c58f987a.zip |
remove trailing white-spaces from app/views/issues/_edit.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7244 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/_edit.html.erb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/issues/_edit.html.erb b/app/views/issues/_edit.html.erb index ec36b1459..b4604779e 100644 --- a/app/views/issues/_edit.html.erb +++ b/app/views/issues/_edit.html.erb @@ -31,19 +31,19 @@ <% end %> </fieldset> <% end %> - + <fieldset><legend><%= l(:field_notes) %></legend> <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> <%= wikitoolbar_for 'notes' %> <%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %> - + <p><%=l(:label_attachment_plural)%><br /><%= render :partial => 'attachments/form' %></p> </fieldset> </div> - + <%= f.hidden_field :lock_version %> <%= submit_tag l(:button_submit) %> - <%= link_to_remote l(:label_preview), + <%= link_to_remote l(:label_preview), { :url => preview_issue_path(:project_id => @project, :id => @issue), :method => 'post', :update => 'preview', |