diff options
author | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2019-10-22 21:38:21 -0700 |
---|---|---|
committer | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2019-10-22 21:41:50 -0700 |
commit | b0f89ed4771a4238d3546323c707b1331baf5c97 (patch) | |
tree | 07d83835056756cff650c0538fa751aa020f0439 /searx/templates/simple | |
parent | 12f42d1572311a56401637ac5c7dc66008eb979c (diff) | |
download | searxng-b0f89ed4771a4238d3546323c707b1331baf5c97.tar.gz searxng-b0f89ed4771a4238d3546323c707b1331baf5c97.zip |
[fix] preserve bangs in corrections
Diffstat (limited to 'searx/templates/simple')
-rw-r--r-- | searx/templates/simple/results.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html index 770eebe81..8885abc30 100644 --- a/searx/templates/simple/results.html +++ b/searx/templates/simple/results.html @@ -95,13 +95,13 @@ {% for correction in corrections %} <div class="left"> <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation"> - <input type="hidden" name="q" value="{{ correction }}"> + <input type="hidden" name="q" value="{{ correction.url }}"> <input type="hidden" name="time_range" value="{{ time_range }}"> <input type="hidden" name="language" value="{{ current_language }}"> <input type="hidden" name="safesearch" value="{{ safesearch }}"> <input type="hidden" name="theme" value="{{ theme }}"> {% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit }}" >{% endif %} - <input type="submit" value="{{ correction }}"> + <input type="submit" value="{{ correction.title }}"> </form> </div> {% endfor %} |