From cbcc6a5374f9d0d399929773ad11fe3980bcfc8f Mon Sep 17 00:00:00 2001 From: fghrsh Date: Sun, 26 Dec 2021 21:13:00 +0800 Subject: [PATCH] fix search page title --- src/controller/default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/default.php b/src/controller/default.php index 7072579..1c907a3 100755 --- a/src/controller/default.php +++ b/src/controller/default.php @@ -37,7 +37,7 @@ class default_controller { } else $word = $books = $count = $categories = null; $records = isset($_SESSION['user']) ? records::get_in_records_by_uid($_SESSION['user']['uid']) : null; $records_count = isset($_SESSION['user']) ? records::count_in_records_by_uid($_SESSION['user']['uid']) : 0; - $this->template('馆存查询', 'search', ['books' => $books, 'page' => $page, 'count' => $count, 'categories' => $categories, 'records' => $records, 'records_count' => $records_count]); + $this->template('书籍检索', 'search', ['books' => $books, 'page' => $page, 'count' => $count, 'categories' => $categories, 'records' => $records, 'records_count' => $records_count]); } public function book($bid) {