##// END OF EJS Templates
Removed some spaces before argument parentheses....
Jean-Philippe Lang -
r447:c10541feb793
parent child
Show More
@@ -58,7 +58,7 end %>
58 </div>
58 </div>
59
59
60 <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
60 <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
61 <% form_tag ({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
61 <% form_tag({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
62 <%=l(:label_change_status)%> :
62 <%=l(:label_change_status)%> :
63 <select name="new_status_id">
63 <select name="new_status_id">
64 <%= options_from_collection_for_select @status_options, "id", "name" %>
64 <%= options_from_collection_for_select @status_options, "id", "name" %>
@@ -104,7 +104,7 end %>
104 <% if authorize_for('issues', 'add_note') %>
104 <% if authorize_for('issues', 'add_note') %>
105 <div class="box">
105 <div class="box">
106 <h3><%= l(:label_add_note) %></h3>
106 <h3><%= l(:label_add_note) %></h3>
107 <% form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
107 <% form_tag({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
108 <p><label for="notes"><%=l(:field_notes)%></label>
108 <p><label for="notes"><%=l(:field_notes)%></label>
109 <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
109 <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
110 <%= submit_tag l(:button_add) %>
110 <%= submit_tag l(:button_add) %>
General Comments 0
You need to be logged in to leave comments. Login now