Fixed a bug (#2679) where the "previous" pagination link would get drawn on the first page.
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php
index ba1572f..28b74f1 100644
--- a/system/libraries/Pagination.php
+++ b/system/libraries/Pagination.php
@@ -165,7 +165,7 @@
 		}

 

 		// Render the "previous" link

-		if  (($this->cur_page - $this->num_links) >= 0)

+		if  ($this->cur_page != 1)

 		{

 			$i = $uri_page_number - $this->per_page;

 			if ($i == 0) $i = '';