Skip to content

Commit

Permalink
Removed the   from the default config variables in the paginatio…
Browse files Browse the repository at this point in the history
…n class. Fixes #187 and #208

Signed-off-by: Alex Bilbie <alex@alexbilbie.com>
  • Loading branch information
alexbilbie committed Sep 7, 2012
1 parent 38cb0df commit f7e23b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions system/libraries/Pagination.php
Expand Up @@ -52,20 +52,20 @@ class CI_Pagination {
protected $full_tag_open = '';
protected $full_tag_close = '';
protected $first_tag_open = '';
protected $first_tag_close = '&nbsp;';
protected $last_tag_open = '&nbsp;';
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 = '&nbsp;<strong>';
protected $cur_tag_open = '<strong>';
protected $cur_tag_close = '</strong>';
protected $next_tag_open = '&nbsp;';
protected $next_tag_close = '&nbsp;';
protected $prev_tag_open = '&nbsp;';
protected $next_tag_open = '';
protected $next_tag_close = '';
protected $prev_tag_open = '';
protected $prev_tag_close = '';
protected $num_tag_open = '&nbsp;';
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();
Expand Down
1 change: 1 addition & 0 deletions user_guide_src/source/changelog.rst
Expand Up @@ -201,6 +201,7 @@ Release Date: Not Released
- Added support for setting custom attributes.
- Deprecated usage of the "anchor_class" setting (use the new "attributes" setting instead).
- Added $config['reuse_query_string'] to allow automatic repopulation of query string arguments, combined with normal URI segments.
- Removed the default ``&nbsp;`` from a number of the configuration variables.
- Added the ability to use a proxy with the :doc:`XML-RPC Library <libraries/xmlrpc>`.

- Core
Expand Down

0 comments on commit f7e23b3

Please sign in to comment.