Removed some spaces before argument parentheses.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@449 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-04-20 09:53:44 +00:00
parent a824017d8c
commit e72778ea84
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ end %>
</table>
<br />
<% 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 %>
<p id="attachments_p"><label><%=l(:label_attachment_new)%>
<%= image_to_function "add.png", "addFileField();return false" %></label>
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>

View File

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