]> source.dussan.org Git - redmine.git/commitdiff
Fixed: error on document list with a document without description.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 17 Sep 2007 16:52:39 +0000 (16:52 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 17 Sep 2007 16:52:39 +0000 (16:52 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@740 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/documents/_document.rhtml

index e1539b82863bd941264578cceb3080526157b5c9..ddfdb9eecc14ab4e5e5192899d62b46025969bda 100644 (file)
@@ -1,3 +1,3 @@
 <p><%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %><br />
-<% unless document.description.empty? %><%=h(truncate(document.description, 250)) %><br /><% end %>
+<% unless document.description.blank? %><%=h(truncate(document.description, 250)) %><br /><% end %>
 <em><%= format_time(document.created_on) %></em></p>
\ No newline at end of file