diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-03-04 20:31:03 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-03-04 20:31:03 +0100 |
| commit | a4f89a798196f7d0c8a72ca80b34d2e9b6c040d5 (patch) | |
| tree | a994b6f00168fd908489b8adc3d6922e3ab77a4c /searx/templates/search.html | |
| parent | e86947d79c0c1b380e718bc06072285e8a6ca8ed (diff) | |
[fix] proper src/href url handling
Diffstat (limited to 'searx/templates/search.html')
| -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 3f88d880d..270d350ac 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="{{ url_for('index') }}" id="search_form"> <div id="search_wrapper"> <input type="text" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/> <input type="submit" value="search" id="search_submit" /> |