diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php
index c66d570..07ad6a6 100644
--- a/system/libraries/Pagination.php
+++ b/system/libraries/Pagination.php
@@ -120,8 +120,11 @@
 		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;