From bfddad2a61b13eda03a0f61af57d829644f12e5d Mon Sep 17 00:00:00 2001 From: thinkphp Date: Sat, 18 Jun 2016 23:52:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/db/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/think/db/Query.php b/library/think/db/Query.php index 17cafea9..4cd4504d 100644 --- a/library/think/db/Query.php +++ b/library/think/db/Query.php @@ -960,7 +960,7 @@ class Query { $config = array_merge(Config::get('paginate'), $config); $listRows = $listRows ?: $config['list_rows']; - $class = strpos($config['type'], '\\') ? $config['type'] : '\\think\\paginator\\driver\\') . ucwords($config['type']); + $class = strpos($config['type'], '\\') ? $config['type'] : '\\think\\paginator\\driver\\' . ucwords($config['type']); $page = isset($config['page']) ? (int) $config['page'] : call_user_func([ $class, 'getCurrentPage',