fix tag stream

This commit is contained in:
Maxwell Salzberg 2011-10-15 22:37:53 -07:00
parent e1aa709c85
commit 3179ebabc9
2 changed files with 4 additions and 4 deletions

View file

@ -36,10 +36,10 @@
.span-6.tags_people
%h3
= t('people', :count => @stream.people_count)
= t('people', :count => @stream.tagge_people_count)
.side_stream.stream
= render :partial => 'people/index', :locals => {:people => @stream.people}
= render :partial => 'people/index', :locals => {:people => @stream.tagged_people}
%br

View file

@ -19,11 +19,11 @@ class Stream::Tag < Stream::Base
@display_tag_name ||= "##{tag_name}"
end
def people
def tagged_people
@people ||= Person.profile_tagged_with(tag_name).paginate(:page => people_page, :per_page => 15)
end
def people_count
def tagge_people_count
@people_count ||= Person.profile_tagged_with(tag_name).count
end