remove trailing white-spaces from app/views/my/blocks/_issuesreportedbyme.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7222 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
69e9b006df
commit
6df8bffedf
|
@ -1,9 +1,9 @@
|
|||
<h3><%=l(:label_reported_issues)%> (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)</h3>
|
||||
|
||||
<% reported_issues = Issue.visible.find(:all,
|
||||
<% reported_issues = Issue.visible.find(:all,
|
||||
:conditions => { :author_id => User.current.id },
|
||||
:limit => 10,
|
||||
:include => [ :status, :project, :tracker ],
|
||||
:limit => 10,
|
||||
:include => [ :status, :project, :tracker ],
|
||||
:order => "#{Issue.table_name}.updated_on DESC") %>
|
||||
<%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
|
||||
<% if reported_issues.length > 0 %>
|
||||
|
@ -16,7 +16,7 @@
|
|||
<% end %>
|
||||
|
||||
<% content_for :header_tags do %>
|
||||
<%= auto_discovery_link_tag(:atom,
|
||||
<%= auto_discovery_link_tag(:atom,
|
||||
{:controller => 'issues', :action => 'index', :set_filter => 1,
|
||||
:author_id => 'me', :format => 'atom', :key => User.current.rss_key},
|
||||
{:title => l(:label_reported_issues)}) %>
|
||||
|
|
Loading…
Reference in New Issue