Commit a1e6092f41422eb6c9c3106e98dfb1b6fc641cd5

Authored by Daniela Feitosa
1 parent 3b213a94

Removed gettext markup from names on linklistblock

(ActionItem1973)
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/link_list_block.rb
... ... @@ -57,7 +57,7 @@ class LinkListBlock < Block
57 57 def link_html(link)
58 58 klass = 'icon-' + link[:icon] if link[:icon]
59 59 sanitize_link(
60   - link_to(_(link[:name]), expand_address(link[:address]), :class => klass)
  60 + link_to(link[:name], expand_address(link[:address]), :class => klass)
61 61 )
62 62 end
63 63  
... ...