diff --git a/app/views/blocks/my_network/community.rhtml b/app/views/blocks/my_network/community.rhtml
index e3b68d8..7426817 100644
--- a/app/views/blocks/my_network/community.rhtml
+++ b/app/views/blocks/my_network/community.rhtml
@@ -1,8 +1,9 @@
- <%= link_to(n_( 'One article published', '%s articles published', owner.articles.count) %
content_tag('b', owner.articles.count), owner.public_profile_url.merge(:action => 'sitemap') ) %>
- - <%= link_to(n_( 'One member', '%s members', owner.members.count) %
- content_tag('b', owner.members.count), owner.public_profile_url.merge(:action => 'members') ) %>
+ <% members = owner.members.size %>
+ - <%= link_to(n_( 'One member', '%s members', members) %
+ content_tag('b', members), owner.public_profile_url.merge(:action => 'members') ) %>
- <%= link_to(n_('One tag', '%s tags', owner.tags.size) %
content_tag('b', owner.tags.size), owner.public_profile_url.merge(:action => 'tags')) %>
--
libgit2 0.21.2