From 9d29106040a4633f4f553ad63e9fd66b2400335a Mon Sep 17 00:00:00 2001 From: haoouba <2323333339@qq.com> Date: Thu, 18 Feb 2021 22:02:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/function.php | 2 +- core/route.php | 6 +++--- core/widget.php | 8 ++++++-- index.php | 2 +- public/aside.php | 2 +- public/header.php | 2 +- 6 files changed, 13 insertions(+), 9 deletions(-) diff --git a/core/function.php b/core/function.php index 502769c..50d3ab6 100644 --- a/core/function.php +++ b/core/function.php @@ -3,7 +3,7 @@ /* 获取主题当前版本号 */ function _getVersion() { - return "5.1.5"; + return "5.1.6"; }; /* 判断是否是手机 */ diff --git a/core/route.php b/core/route.php index 24ef68a..00d533c 100644 --- a/core/route.php +++ b/core/route.php @@ -50,7 +50,7 @@ function _getPost($self) "agree" => _getAgree($item, false), "permalink" => $item->permalink, "lazyload" => _getLazyload(false), - "type" => "sticky" + "type" => "sticky", ); } } @@ -64,9 +64,9 @@ function _getPost($self) "title" => $item->title, "abstract" => _getAbstract($item, false), "category" => $item->categories, - "views" => _getViews($item, false), + "views" => $item->views, "commentsNum" => number_format($item->commentsNum), - "agree" => _getAgree($item, false), + "agree" => $item->agree, "permalink" => $item->permalink, "lazyload" => _getLazyload(false), "type" => "normal" diff --git a/core/widget.php b/core/widget.php index a2295ad..a13ed9f 100644 --- a/core/widget.php +++ b/core/widget.php @@ -4,8 +4,10 @@ class Widget_Contents_Hot extends Widget_Abstract_Contents public function execute() { $this->parameter->setDefault(array('pageSize' => 10)); + $select = $this->select(); + $select->cleanAttribute('fields'); $this->db->fetchAll( - $this->select()->from('table.contents') + $select->from('table.contents') ->where("table.contents.password IS NULL OR table.contents.password = ''") ->where('table.contents.status = ?', 'publish') ->where('table.contents.created <= ?', time()) @@ -23,8 +25,10 @@ class Widget_Contents_Sort extends Widget_Abstract_Contents { $this->parameter->setDefault(array('page' => 1, 'pageSize' => 10, 'type' => 'created')); $offset = $this->parameter->pageSize * ($this->parameter->page - 1); + $select = $this->select(); + $select->cleanAttribute('fields'); $this->db->fetchAll( - $this->select() + $select ->from('table.contents') ->where('table.contents.type = ?', 'post') ->where('table.contents.status = ?', 'publish') diff --git a/index.php b/index.php index eeed38a..990ba92 100644 --- a/index.php +++ b/index.php @@ -114,7 +114,7 @@