diff options
| author | cedricnjanga | 2018-03-27 22:57:42 -0700 | 
|---|---|---|
| committer | cedricnjanga | 2018-03-29 11:13:24 -0700 | 
| commit | 515c1c033105b6bd5ace6cb32fe9bec5f4573cd8 (patch) | |
| tree | 03826de1260a7909e24c57eb67e3df20e61b34e8 /app/helpers/pagination_helper.rb | |
| parent | 1019debe93d776f0d38ae69099e6492a7dd4a87c (diff) | |
| download | chouette-core-515c1c033105b6bd5ace6cb32fe9bec5f4573cd8.tar.bz2 | |
Refs #6156 Update Vehicle journey translations
Diffstat (limited to 'app/helpers/pagination_helper.rb')
| -rw-r--r-- | app/helpers/pagination_helper.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/app/helpers/pagination_helper.rb b/app/helpers/pagination_helper.rb index 639d19de6..637010005 100644 --- a/app/helpers/pagination_helper.rb +++ b/app/helpers/pagination_helper.rb @@ -28,9 +28,9 @@ module PaginationHelper          will_paginate collection, container: false, page_links: false, previous_label: '', next_label: '', param_name: (collection.try(:pagination_param_name) || "page")        end -      content_tag :div, pinfos.concat(links).html_safe, class: "pagination #{cls}" +      content_tag :div, pinfos.capitalize.concat(links).html_safe, class: "pagination #{cls}"      else -      content_tag :div, pinfos, class: "pagination #{cls}" +      content_tag :div, pinfos.capitalize, class: "pagination #{cls}"      end    end | 
