diff --git a/app/views/tags/show.haml b/app/views/tags/show.haml index a672702c0b609c9aa807d601c698f793595f0eec..6e5017e6cfa9009ed7ab50c33b96438c3a4d5376 100644 --- a/app/views/tags/show.haml +++ b/app/views/tags/show.haml @@ -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 diff --git a/lib/stream/tag.rb b/lib/stream/tag.rb index 312a3b58f9186a1818bb861b93ef6ab497b7faa3..f5dceb2b82315dfb4e93a6522a4e9354b0cc1abc 100644 --- a/lib/stream/tag.rb +++ b/lib/stream/tag.rb @@ -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