From cfb7021e9f53fa089bfd676978b448b27e4bd996 Mon Sep 17 00:00:00 2001 From: Ronald Beilsma Date: Thu, 29 Dec 2011 09:57:49 +0100 Subject: ceil returned float (line 131), so if statement in line 134 was bound to return false (===, float vs integer) --- system/libraries/Pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'system/libraries/Pagination.php') diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php index d10bef3e5..63b750bdb 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -128,10 +128,10 @@ class CI_Pagination { } // Calculate the total number of pages - $num_pages = ceil($this->total_rows / $this->per_page); + $num_pages = (int) ceil($this->total_rows / $this->per_page); // Is there only one page? Hm... nothing more to do here then. - if ($num_pages == 1) + if ($num_pages === 1) { return ''; } -- cgit v1.2.3-24-g4f1b