Commit 57d1291a611bb9e32750024b50e1602b44a0af3f

Authored by MoisesMachado
1 parent ea278a0e

ActionItem597: fixed


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@2331 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/helpers/enterprise_homepage_helper.rb
... ... @@ -13,7 +13,7 @@ module EnterpriseHomepageHelper
13 13 [ _('Economic activity:'), :economic_activity ]
14 14 ].each { | name, att |
15 15 if profile.send( att ) and not profile.send( att ).blank?
16   - data << content_tag( 'li', content_tag('strong', name) +' '+ profile.send( att ) ) +"\n"
  16 + data << content_tag( 'li', content_tag('strong', name) +' '+ profile.send( att ).to_s ) +"\n"
17 17 end
18 18 }
19 19 if profile.respond_to?(:distance) and !profile.distance.nil?
... ...