From e72778ea84d00f98f9d381faa6902e260d3a148f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 20 Apr 2007 09:53:44 +0000 Subject: [PATCH] Removed some spaces before argument parentheses. git-svn-id: http://redmine.rubyforge.org/svn/trunk@449 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/show.rhtml | 2 +- app/views/my/blocks/_news.rhtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 759c54f5e..c8fd5c7dd 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -92,7 +92,7 @@ end %>
<% if authorize_for('issues', 'add_attachment') %> - <% form_tag ({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") do %> + <% form_tag({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") do %>

<%= file_field_tag 'attachments[]', :size => 30 %> (<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)

diff --git a/app/views/my/blocks/_news.rhtml b/app/views/my/blocks/_news.rhtml index 4c7e2729a..d86cced92 100644 --- a/app/views/my/blocks/_news.rhtml +++ b/app/views/my/blocks/_news.rhtml @@ -1,6 +1,6 @@

<%=l(:label_news_latest)%>

-<%= render (:partial => 'news/news', +<%= render(:partial => 'news/news', :collection => News.find(:all, :limit => 10, :order => "#{News.table_name}.created_on DESC",