summaryrefslogtreecommitdiffstats
path: root/app/views/my
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-14 08:41:02 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-14 08:41:02 +0000
commit6df8bffedf584d54eb8654ccc9e6eb9d31fd4c8e (patch)
tree8d97c0fdf29c2bb14591b01c68f99094197dae08 /app/views/my
parent69e9b006dfdafebc4ad228be02374965a6ea2218 (diff)
downloadredmine-6df8bffedf584d54eb8654ccc9e6eb9d31fd4c8e.tar.gz
redmine-6df8bffedf584d54eb8654ccc9e6eb9d31fd4c8e.zip
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
Diffstat (limited to 'app/views/my')
-rw-r--r--app/views/my/blocks/_issuesreportedbyme.html.erb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/my/blocks/_issuesreportedbyme.html.erb b/app/views/my/blocks/_issuesreportedbyme.html.erb
index be468d140..93744f04d 100644
--- a/app/views/my/blocks/_issuesreportedbyme.html.erb
+++ b/app/views/my/blocks/_issuesreportedbyme.html.erb
@@ -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)}) %>