diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-03-26 21:09:06 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-03-26 21:09:06 +0100 |
commit | 55b3aa3552b0627510bce66ff208529c168a2836 (patch) | |
tree | b866ffaafc4e180dad24476b25fe12ccdeec05bd /app/view/templates | |
parent | 9ce7ecebaf118546bf3a3cbad7ce448d490ade15 (diff) | |
download | wcms-55b3aa3552b0627510bce66ff208529c168a2836.tar.gz wcms-55b3aa3552b0627510bce66ff208529c168a2836.zip |
add id in deepsearchbar options
Diffstat (limited to 'app/view/templates')
-rw-r--r-- | app/view/templates/home.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 6c3ad62..75e466e 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -67,6 +67,8 @@ <div id="deepsearchbar" class="hidephone"> <form action="<?= $this->url('home') ?>" method="get"> <input type="text" name="search" value="<?= $deepsearch ?>" id="deepsearch" placeholder="deep search"> + <input type="checkbox" name="id" id="deepid" value="1" <?= $searchopt['id'] ? 'checked' : '' ?>> + <label for="deepid">id</label> <input type="checkbox" name="title" id="deeptitle" value="1" <?= $searchopt['title'] ? 'checked' : '' ?>> <label for="deeptitle">title</label> <input type="checkbox" name="description" id="deepdescription" value="1" <?= $searchopt['description'] ? 'checked' : '' ?>> |