diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-02-01 23:45:26 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-02-01 23:45:26 +0100 |
commit | 57b1a975711c888596bc1ae409521396252fd1ed (patch) | |
tree | 5e73b42a595964f7eb62623e3e637f7cb0a3d73e /system/libraries/Pagination.php | |
parent | b998f3e820c724f16f3b700f094c875af1d28c0f (diff) | |
parent | 27c80af1dd9b871ab44452a8de22fd9cabaa184c (diff) |
Merge upstream
Diffstat (limited to 'system/libraries/Pagination.php')
-rw-r--r-- | system/libraries/Pagination.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php index c59151bad..35ac541e8 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -128,7 +128,7 @@ 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) |