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:
parent
a824017d8c
commit
e72778ea84
|
@ -92,7 +92,7 @@ end %>
|
||||||
</table>
|
</table>
|
||||||
<br />
|
<br />
|
||||||
<% if authorize_for('issues', 'add_attachment') %>
|
<% 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)%>
|
<p id="attachments_p"><label><%=l(:label_attachment_new)%>
|
||||||
<%= image_to_function "add.png", "addFileField();return false" %></label>
|
<%= 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>
|
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<h3><%=l(:label_news_latest)%></h3>
|
<h3><%=l(:label_news_latest)%></h3>
|
||||||
|
|
||||||
<%= render (:partial => 'news/news',
|
<%= render(:partial => 'news/news',
|
||||||
:collection => News.find(:all,
|
:collection => News.find(:all,
|
||||||
:limit => 10,
|
:limit => 10,
|
||||||
:order => "#{News.table_name}.created_on DESC",
|
:order => "#{News.table_name}.created_on DESC",
|
||||||
|
|
Loading…
Reference in New Issue