diff --git a/lib/stream/tag.rb b/lib/stream/tag.rb index c96d4d721..0c96e0a23 100644 --- a/lib/stream/tag.rb +++ b/lib/stream/tag.rb @@ -24,11 +24,11 @@ class Stream::Tag < Stream::Base end def tagged_people - @people ||= Person.profile_tagged_with(tag_name).paginate(:page => people_page, :per_page => 15) + @people ||= ::Person.profile_tagged_with(tag_name).paginate(:page => people_page, :per_page => 15) end def tagged_people_count - @people_count ||= Person.profile_tagged_with(tag_name).count + @people_count ||= ::Person.profile_tagged_with(tag_name).count end def posts