在modules/Vtiger/models/Paging.php的calculatePageRange方法里,
在方法的开头添加:
/**解决vtiger分页前一页不能翻的bug**/
if ($this->get('page') >1) {
$this->set('prevPageExists', true);
}
在modules/Vtiger/models/Paging.php的calculatePageRange方法里,
在方法的开头添加:
/**解决vtiger分页前一页不能翻的bug**/
if ($this->get('page') >1) {
$this->set('prevPageExists', true);
}