From a32d6a49c094509d816d755060751a711919656f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 3 Oct 2007 18:43:38 +0000 Subject: [PATCH] Fixed: pagination broken on news list with Opera. git-svn-id: http://redmine.rubyforge.org/svn/trunk@797 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/projects/list_news.rhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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| %>

<%= 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 %>

-

<%= authoring news.created_on, news.author %>

+

<%= authoring news.created_on, news.author %>

<%= textilizable(news.description) %> <% end %> <% end %>