small cleanup

This commit is contained in:
Maxwell Salzberg 2011-09-30 21:54:14 -07:00
parent 52bb5900a3
commit cd93a29377

View file

@ -17,7 +17,10 @@ class TagStream < BaseStream
if tag_string.empty?
[]
else
@posts ||= StatusMessage.owned_or_visible_by_user(user).tagged_with([@tag_string], :any => true).where(:public => true).for_a_stream(@max_time, @order)
@posts ||= StatusMessage.owned_or_visible_by_user(user).
tagged_with([tag_string], :any => true).
where(:public => true).
for_a_stream(@max_time, @order)
end
end