Commit d1ef35be34772bcb2e6fe3a79a02de1348c92fe1

Authored by Rodrigo Souto
Committed by Antonio Terceiro
1 parent 6dc56436
Exists in stable-1.2

favorite-enterprises-block: add view-all class to footer link and fix translation

(cherry picked from commit 09c3d5b0b68508285c0f6afaaa9f76720aec7d5d)
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/favorite_enterprises_block.rb
... ... @@ -16,7 +16,7 @@ class FavoriteEnterprisesBlock < ProfileListBlock
16 16 owner = self.owner
17 17 return '' unless owner.kind_of?(Person)
18 18 proc do
19   - link_to _('View all'), :profile => owner.identifier, :controller => 'profile', :action => 'favorite_enterprises'
  19 + link_to _('enterprises|View all'), {:profile => owner.identifier, :controller => 'profile', :action => 'favorite_enterprises'}, :class => 'view-all'
20 20 end
21 21 end
22 22  
... ...