diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-09-07 10:52:32 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-09-07 10:52:32 +0200 |
commit | f7e23b3357c73cc9eb50c59f444181fcfaa2267d (patch) | |
tree | 90df4caa3d6b3ff7d89fe3d2146c5387b7aa0cb3 /system | |
parent | 38cb0df9f54eb69f83cd1832d196554b92c881e1 (diff) |
Removed the from the default config variables in the pagination class. Fixes #187 and #208
Signed-off-by: Alex Bilbie <alex@alexbilbie.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Pagination.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php index 5573f6407..4fa605ca9 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -52,20 +52,20 @@ class CI_Pagination { protected $full_tag_open = ''; protected $full_tag_close = ''; protected $first_tag_open = ''; - protected $first_tag_close = ' '; - protected $last_tag_open = ' '; + protected $first_tag_close = ''; + protected $last_tag_open = ''; protected $last_tag_close = ''; protected $first_url = ''; // Alternative URL for the First Page. - protected $cur_tag_open = ' <strong>'; + protected $cur_tag_open = '<strong>'; protected $cur_tag_close = '</strong>'; - protected $next_tag_open = ' '; - protected $next_tag_close = ' '; - protected $prev_tag_open = ' '; + protected $next_tag_open = ''; + protected $next_tag_close = ''; + protected $prev_tag_open = ''; protected $prev_tag_close = ''; - protected $num_tag_open = ' '; + protected $num_tag_open = ''; protected $num_tag_close = ''; protected $page_query_string = FALSE; - protected $query_string_segment = 'per_page'; + protected $query_string_segment = 'per_page'; protected $display_pages = TRUE; protected $_attributes = ''; protected $_link_types = array(); |