]> source.dussan.org Git - redmine.git/commitdiff
Removed some spaces before argument parentheses.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 20 Apr 2007 10:23:25 +0000 (10:23 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 20 Apr 2007 10:23:25 +0000 (10:23 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@450 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/show.rhtml

index c8fd5c7dddb6b1374a9c94b8b57c53f5027f5033..a5569c9d4d495f6c98c3ce5f9a1abb0d5ceaa442 100644 (file)
@@ -58,7 +58,7 @@ end %>
 </div>
 
 <% 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)%> :
   <select name="new_status_id">
   <%= options_from_collection_for_select @status_options, "id", "name" %>
@@ -104,7 +104,7 @@ end %>
 <% if authorize_for('issues', 'add_note') %>
   <div class="box">
   <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>
     <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit'  %></p>
   <%= submit_tag l(:button_add) %>