@@ -353,7 +353,10 module ApplicationHelper | |||||
353 |
|
353 | |||
354 | html = '' |
|
354 | html = '' | |
355 | if paginator.current.previous |
|
355 | if paginator.current.previous | |
356 | html << link_to_content_update('« ' + l(:label_previous), url_param.merge(page_param => paginator.current.previous)) + ' ' |
|
356 | # \xc2\xab(utf-8) = « | |
|
357 | html << link_to_content_update( | |||
|
358 | "\xc2\xab " + l(:label_previous), | |||
|
359 | url_param.merge(page_param => paginator.current.previous)) + ' ' | |||
357 | end |
|
360 | end | |
358 |
|
361 | |||
359 | html << (pagination_links_each(paginator, options) do |n| |
|
362 | html << (pagination_links_each(paginator, options) do |n| | |
@@ -361,7 +364,10 module ApplicationHelper | |||||
361 | end || '') |
|
364 | end || '') | |
362 |
|
365 | |||
363 | if paginator.current.next |
|
366 | if paginator.current.next | |
364 | html << ' ' + link_to_content_update((l(:label_next) + ' »'), url_param.merge(page_param => paginator.current.next)) |
|
367 | # \xc2\xbb(utf-8) = » | |
|
368 | html << ' ' + link_to_content_update( | |||
|
369 | (l(:label_next) + " \xc2\xbb"), | |||
|
370 | url_param.merge(page_param => paginator.current.next)) | |||
365 | end |
|
371 | end | |
366 |
|
372 | |||
367 | unless count.nil? |
|
373 | unless count.nil? |
General Comments 0
You need to be logged in to leave comments.
Login now