mirror of
https://github.com/searxng/searxng.git
synced 2024-11-23 04:27:46 +01:00
Another patch
This commit is contained in:
parent
22489c4b5f
commit
4979b4f9d9
@ -577,6 +577,7 @@ def search():
|
|||||||
if output_format == 'html':
|
if output_format == 'html':
|
||||||
return render(
|
return render(
|
||||||
'index.html',
|
'index.html',
|
||||||
|
advanced_search=request.preferences.get_value('advanced_search')
|
||||||
selected_categories=get_selected_categories(request.preferences, request.form),
|
selected_categories=get_selected_categories(request.preferences, request.form),
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
@ -611,7 +612,10 @@ def search():
|
|||||||
return redirect(result_container.redirect_url)
|
return redirect(result_container.redirect_url)
|
||||||
|
|
||||||
# UI
|
# UI
|
||||||
advanced_search = request.preferences.get_value('advanced_search')
|
# 'q' in request.from, possible value from request.form.get('advanced_search'):
|
||||||
|
# * 'on': the checkbox is checked
|
||||||
|
# * None: the checkbox is unchecked or request is sent from opensearch.xml
|
||||||
|
advanced_search = request.form.get('advanced_search')
|
||||||
|
|
||||||
# Server-Timing header
|
# Server-Timing header
|
||||||
request.timings = result_container.get_timings()
|
request.timings = result_container.get_timings()
|
||||||
|
Loading…
Reference in New Issue
Block a user