From 7ec88d3faa988eebca81e18c616a15305dfa2368 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 21 Jul 2011 06:36:36 -0700 Subject: [PATCH] Tweak pagination comment in Query class. --- system/db/query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/db/query.php b/system/db/query.php index c763c431..f0c160b2 100644 --- a/system/db/query.php +++ b/system/db/query.php @@ -460,7 +460,7 @@ class Query { // Reset the SELECT clause so we can execute another query to get the results. $this->select = null; - // Get the current page from the Paginator. The Paginator class will validate the page number. + // Get the current page. The Paginator class will validate the page number. $page = \System\Paginator::page(ceil($total / $per_page)); return new \System\Paginator($this->skip(($page - 1) * $per_page)->take($per_page)->get(), $total, $per_page);