From c57249e70c96a707596b9a0898a3ae9ce1d986e5 Mon Sep 17 00:00:00 2001
From: Alan Lord <alanslists@gmail.com>
Date: Tue, 20 Sep 2016 12:05:01 +0100
Subject: [PATCH] Fix bug #262

---
 modules/Vtiger/models/Paging.php | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/Vtiger/models/Paging.php b/modules/Vtiger/models/Paging.php
index 3fa34f680..b4bef2b83 100644
--- a/modules/Vtiger/models/Paging.php
+++ b/modules/Vtiger/models/Paging.php
@@ -122,6 +122,9 @@ class Vtiger_Paging_Model extends Vtiger_Base_Model {
 		$rangeInfo = array();
 		$recordCount = count($recordList);
 		$pageLimit = $this->getPageLimit();
+
+		$this->set('prevPageExists', true);
+
 		if( $recordCount > 0) {
 			//specifies what sequencce number of last record in prev page
 			$prevPageLastRecordSequence = (($this->getCurrentPage()-1)*$pageLimit);
@@ -149,4 +152,4 @@ class Vtiger_Paging_Model extends Vtiger_Base_Model {
 		return $this;
 	}
 
-}
\ No newline at end of file
+}
-- 
GitLab