Removed some spaces before argument parentheses.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@450 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e72778ea84
commit
c10541feb7
|
@ -58,7 +58,7 @@ end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
|
<% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
|
||||||
<% form_tag ({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
|
<% form_tag({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
|
||||||
<%=l(:label_change_status)%> :
|
<%=l(:label_change_status)%> :
|
||||||
<select name="new_status_id">
|
<select name="new_status_id">
|
||||||
<%= options_from_collection_for_select @status_options, "id", "name" %>
|
<%= options_from_collection_for_select @status_options, "id", "name" %>
|
||||||
|
@ -104,7 +104,7 @@ end %>
|
||||||
<% if authorize_for('issues', 'add_note') %>
|
<% if authorize_for('issues', 'add_note') %>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h3><%= l(:label_add_note) %></h3>
|
<h3><%= l(:label_add_note) %></h3>
|
||||||
<% form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
|
<% form_tag({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
|
||||||
<p><label for="notes"><%=l(:field_notes)%></label>
|
<p><label for="notes"><%=l(:field_notes)%></label>
|
||||||
<%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
|
<%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
|
||||||
<%= submit_tag l(:button_add) %>
|
<%= submit_tag l(:button_add) %>
|
||||||
|
|
Loading…
Reference in New Issue