Commit 010c16307655e97b9da617994b41310d89a515a1

Authored by Leandro Santos
2 parents dbbf65e1 9f79ead3
Exists in staging and in 1 other branch production

Merge branch 'master' into staging

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/helpers/application_helper.rb
... ... @@ -859,7 +859,7 @@ module ApplicationHelper
859 859 alias :browse_communities_menu :search_communities_menu
860 860  
861 861 def pagination_links(collection, options={})
862   - options = {:previous_label => content_tag(:span, '« ', :class => 'previous-arrow') + _('Previous'), :next_label => _('Next') + content_tag(:span, ' »', :class => 'next-arrow'), :inner_window => 1, :outer_window => 0 }.merge(options)
  862 + options = {:previous_label => content_tag(:span, '« '.html_safe, :class => 'previous-arrow') + _('Previous'), :next_label => _('Next') + content_tag(:span, ' »'.html_safe, :class => 'next-arrow'), :inner_window => 1, :outer_window => 0 }.merge(options)
863 863 will_paginate(collection, options)
864 864 end
865 865  
... ...