diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-11-26 20:59:07 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-11-26 20:59:07 +0100 |
| commit | d50414275c9dce9dd6084f1a1ca1b5ce08a987ab (patch) | |
| tree | 6c12aa0aa01389fe3ddfe9a152d1ed32cd98e84e | |
| parent | d1dd6364c9ee5b1ae78596ad4dcd7e38837927a8 (diff) | |
[fix] form submit url
| -rw-r--r-- | searx/templates/search.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/search.html b/searx/templates/search.html index 8800fa79b..fb5526ef2 100644 --- a/searx/templates/search.html +++ b/searx/templates/search.html @@ -1,4 +1,4 @@ -<form method="post" action="" id="search_form"> +<form method="post" action="/" id="search_form"> <div id="search_wrapper"> <input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/> <input type="submit" value="" id="search_submit" /> |