diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/params/query.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/search/search-specific.html.tmpl | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/template/en/default/admin/params/query.html.tmpl b/template/en/default/admin/params/query.html.tmpl index ca4280f62..b3f0b0f66 100644 --- a/template/en/default/admin/params/query.html.tmpl +++ b/template/en/default/admin/params/query.html.tmpl @@ -54,5 +54,7 @@ quicksearch_comment_cutoff => "The maximum number of search terms for a QuickSearch " _ "to search comments. If the QuickSearch query contains " _ - "more terms than this value, QuickSearch will not search comments." } + "more terms than this value, QuickSearch will not search comments.", + + quicksearch_allow_empty_words => "Whether to allow a QuickSearch with empty Words." } %] diff --git a/template/en/default/search/search-specific.html.tmpl b/template/en/default/search/search-specific.html.tmpl index d93abd883..af633ddf7 100644 --- a/template/en/default/search/search-specific.html.tmpl +++ b/template/en/default/search/search-specific.html.tmpl @@ -109,12 +109,17 @@ for "crash secure SSL flash". <tr> <td></td> <td> - <input type="submit" id="search" value="Search" + + [% IF Param('quicksearch_allow_empty_words') %] + <input type="submit" id="search" value="Search"> + [% ELSE %] + <input type="submit" id="search" value="Search" onclick="if (this.form.content.value == '') {alert('The Words field cannot be empty. You have to ' + 'enter at least one word in your search criteria.'); return false;} return true;"> - </td> + [% END %] + </td> </tr> </table> </form> |