do not call pphotos on a non StatusMessage in the page title helper either

This commit is contained in:
Jonne Haß 2012-01-13 22:44:03 +01:00
parent 2cbfe75686
commit 26aff017df

View file

@ -11,7 +11,7 @@ module PostsHelper
else
if post.text.present?
truncate(post.text(:plain_text => true), :length => 20)
elsif post.photos.present?
elsif post.respond_to?(:photos) && post.photos.present?
I18n.t "posts.show.photos_by", :count => post.photos.size, :author => post.author.name
end
end