summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-03 18:43:38 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-03 18:43:38 +0000
commita32d6a49c094509d816d755060751a711919656f (patch)
tree67ac229f7696795e581bdc2b94d723dd6b04a85e
parent586231067bb1aa0ab7c1da005a6b62413ca0fd2d (diff)
downloadredmine-a32d6a49c094509d816d755060751a711919656f.tar.gz
redmine-a32d6a49c094509d816d755060751a711919656f.zip
Fixed: pagination broken on news list with Opera.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@797 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/projects/list_news.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/list_news.rhtml b/app/views/projects/list_news.rhtml
index b58524e36..8a3537848 100644
--- a/app/views/projects/list_news.rhtml
+++ b/app/views/projects/list_news.rhtml
@@ -22,7 +22,7 @@
<% @newss.each do |news| %>
<h3><%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
<%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %></h3>
- <p><span class="author"><%= authoring news.created_on, news.author %></p>
+ <p class="author"><%= authoring news.created_on, news.author %></p>
<%= textilizable(news.description) %>
<% end %>
<% end %>