summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/libraries/Pagination.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php
index 9a5a0bf62..5a4ca8f10 100644
--- a/system/libraries/Pagination.php
+++ b/system/libraries/Pagination.php
@@ -36,36 +36,36 @@
*/
class CI_Pagination {
- public $base_url = ''; // The page we are linking to
- public $prefix = ''; // A custom prefix added to the path.
- public $suffix = ''; // A custom suffix added to the path.
- public $total_rows = 0; // Total number of items (database results)
- public $per_page = 10; // Max number of items you want shown per page
- public $num_links = 2; // Number of "digit" links to show before/after the currently viewed page
- public $cur_page = 0; // The current page being viewed
- public $use_page_numbers = FALSE; // Use page number for segment instead of offset
- public $first_link = '‹ First';
- public $next_link = '>';
- public $prev_link = '<';
- public $last_link = 'Last ›';
- public $uri_segment = 3;
+ public $base_url = ''; // The page we are linking to
+ public $prefix = ''; // A custom prefix added to the path.
+ public $suffix = ''; // A custom suffix added to the path.
+ public $total_rows = 0; // Total number of items (database results)
+ public $per_page = 10; // Max number of items you want shown per page
+ public $num_links = 2; // Number of "digit" links to show before/after the currently viewed page
+ public $cur_page = 0; // The current page being viewed
+ public $use_page_numbers = FALSE; // Use page number for segment instead of offset
+ public $first_link = '‹ First';
+ public $next_link = '>';
+ public $prev_link = '<';
+ public $last_link = 'Last ›';
+ public $uri_segment = 3;
public $full_tag_open = '';
public $full_tag_close = '';
public $first_tag_open = '';
public $first_tag_close = ' ';
public $last_tag_open = ' ';
public $last_tag_close = '';
- public $first_url = ''; // Alternative URL for the First Page.
- public $cur_tag_open = '&nbsp;<strong>';
+ public $first_url = ''; // Alternative URL for the First Page.
+ public $cur_tag_open = '&nbsp;<strong>';
public $cur_tag_close = '</strong>';
public $next_tag_open = '&nbsp;';
public $next_tag_close = '&nbsp;';
public $prev_tag_open = '&nbsp;';
public $prev_tag_close = '';
- public $num_tag_open = '&nbsp;';
+ public $num_tag_open = '&nbsp;';
public $num_tag_close = '';
public $page_query_string = FALSE;
- public $query_string_segment = 'per_page';
+ public $query_string_segment = 'per_page';
public $display_pages = TRUE;
protected $_attributes = '';
protected $_link_types = array();