From 55b3aa3552b0627510bce66ff208529c168a2836 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Thu, 26 Mar 2020 21:09:06 +0100 Subject: add id in deepsearchbar options --- app/class/Controllerhome.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/class/Controllerhome.php') diff --git a/app/class/Controllerhome.php b/app/class/Controllerhome.php index 71f110e..907bef7 100644 --- a/app/class/Controllerhome.php +++ b/app/class/Controllerhome.php @@ -74,8 +74,9 @@ class Controllerhome extends Controllerpage public function deepsearch() : array { if (!isset($_GET['search'])) { - $searchopt = ['title' => 1, 'description' => 1, 'content' => 1, 'other' => 0, 'casesensitive' => 0]; + $searchopt = ['id' => 1, 'title' => 1, 'description' => 1, 'content' => 1, 'other' => 0, 'casesensitive' => 0]; } else { + $searchopt['id'] = $_GET['id'] ?? 0; $searchopt['title'] = $_GET['title'] ?? 0; $searchopt['description'] = $_GET['description'] ?? 0; $searchopt['content'] = $_GET['content'] ?? 0; -- cgit v1.2.3