logo

searx

My custom branche(s) on searx, a meta-search engine
commit: ced6a94591b9c4953899fcb77197007b337ebae8
parent: 77b936e3be280292af941d5c48dbfbb3a8a5ee6e
Author: asciimoo <asciimoo@gmail.com>
Date:   Sat, 15 Feb 2014 07:51:17 +0100

[fix][#36] paging category reset

Diffstat:

Msearx/templates/results.html6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/searx/templates/results.html b/searx/templates/results.html @@ -62,6 +62,9 @@ <form method="post" action="/"> <div class="left"> <input type="hidden" name="q" value="{{ q }}" /> + {% for category in selected_categories %} + <input type="hidden" name="category_{{ category }}" value="1"/> + {% endfor %} <input type="hidden" name="pageno" value="{{ pageno-1 }}" /> <input type="submit" value="<< {{ _('previous page') }}" /> </div> @@ -69,6 +72,9 @@ {% endif %} <form method="post" action="/"> <div class="left"> + {% for category in selected_categories %} + <input type="hidden" name="category_{{ category }}" value="1"/> + {% endfor %} <input type="hidden" name="q" value="{{ q }}" /> <input type="hidden" name="pageno" value="{{ pageno+1 }}" /> <input type="submit" value="{{ _('next page') }} >>" />