diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index eb781b6..fda8391 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -1131,7 +1131,7 @@ module ApplicationHelper
pending_tasks_count = ''
count = user ? Task.to(user).pending.count : -1
if count > 0
- pending_tasks_count = link_to(count.to_s, user.tasks_url, :id => 'pending-tasks-count', :title => _("Manage your pending tasks"))
+ pending_tasks_count = link_to("#{count}", user.tasks_url, :id => 'pending-tasks-count', :title => _("Manage your pending tasks"))
end
(_("Welcome, %s") % link_to("#{user.identifier}", user.public_profile_url, :id => "homepage-link", :title => _('Go to your homepage'))) +
--
libgit2 0.21.2