diff options
author | Timothy Warren <tim@timshomepage.net> | 2011-09-23 16:28:13 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2011-09-23 16:28:13 +0200 |
commit | 4d292bdb56ba6afc26878d9bcd82892f48d9f1a4 (patch) | |
tree | a894323d2e896adcb7d25d7d1edb806295147384 /user_guide/libraries/pagination.html | |
parent | 5fc36d8c9dc0bd5d41ed7dea36f999c6e07e1615 (diff) | |
parent | d26133be24eef68b1bead61e7e808f4424a71a0a (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop
Diffstat (limited to 'user_guide/libraries/pagination.html')
-rw-r--r-- | user_guide/libraries/pagination.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/user_guide/libraries/pagination.html b/user_guide/libraries/pagination.html index 196555441..6a144114d 100644 --- a/user_guide/libraries/pagination.html +++ b/user_guide/libraries/pagination.html @@ -119,7 +119,11 @@ something different you can specify it.</p> <p>The number of "digit" links you would like before and after the selected page number. For example, the number 2 will place two digits on either side, as in the example links at the very top of this page.</p> -<h4>$config['page_query_string'] = TRUE</h4> + +<h4>$config['use_page_numbers'] = TRUE;</h4> +<p>By default, the URI segment will use the starting index for the items you are paginating. If you prefer to show the the actual page number, set this to TRUE.</p> + +<h4>$config['page_query_string'] = TRUE;</h4> <p>By default, the pagination library assume you are using <a href="../general/urls.html">URI Segments</a>, and constructs your links something like</p> <p><code>http://example.com/index.php/test/page/20</code></p> <p>If you have $config['enable_query_strings'] set to TRUE your links will automatically be re-written using Query Strings. This option can also be explictly set. Using $config['page_query_string'] set to TRUE, the pagination link will become.</p> |