summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries
diff options
context:
space:
mode:
authorEric Barnes <eric@ericlbarnes.com>2011-09-21 17:37:54 +0200
committerEric Barnes <eric@ericlbarnes.com>2011-09-21 17:37:54 +0200
commit246cd1795755e08e1cdf78a0fb42c05af6c30461 (patch)
treeb57bd02e5cd9567304c5abceb28e095164d0578c /user_guide/libraries
parenta4fac6b8ac17b6864e632fe821b650291a9d4c42 (diff)
parent44e6182d2e50aef657511660b96486a2c8f8d78d (diff)
Merge branch 'develop' of https://github.com/akuzemchak/CodeIgniter into akuzemchak-develop
Conflicts: user_guide/changelog.html
Diffstat (limited to 'user_guide/libraries')
-rw-r--r--user_guide/libraries/pagination.html6
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 &quot;digit&quot; 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>