[fix] preserve bangs in corrections

This commit is contained in:
Marc Abonce Seguin 2019-10-22 21:38:21 -07:00
parent 12f42d1572
commit b0f89ed477
3 changed files with 11 additions and 5 deletions

View file

@ -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 %}