diff options
author | admin <devnull@localhost> | 2006-10-31 01:36:32 +0100 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-31 01:36:32 +0100 |
commit | b93464db656fe017fe434b0fc917921ded88a12c (patch) | |
tree | 1ed24c1542b206a424e0b88e08f64a7932e31826 /system/libraries/Pagination.php | |
parent | 784add749c806c52327615d47b8c6fabe2bd3438 (diff) |
Diffstat (limited to 'system/libraries/Pagination.php')
-rw-r--r-- | system/libraries/Pagination.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php index c66d570cd..07ad6a683 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -120,8 +120,11 @@ class CI_Pagination { if ($CI->uri->segment($this->uri_segment) != 0) { $this->cur_page = $CI->uri->segment($this->uri_segment); + + // Prep the current page - no funny business! + $this->cur_page = preg_replace("/[a-z\-]/", "", $this->cur_page); } - + if ( ! is_numeric($this->cur_page)) { $this->cur_page = 0; |