logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 04c408389d3d1a97a6a4b59502490372d67357cf
parent: 763a7d68fc08bb1297e7256bd375b0eeb1cd411c
Author: asciimoo <asciimoo@gmail.com>
Date:   Fri, 10 Jan 2014 15:18:05 +0100

[fix] unused closing tag removed

Diffstat:

Msearx/templates/categories.html2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/templates/categories.html b/searx/templates/categories.html @@ -1,7 +1,7 @@ <div id="categories"> {% for category in categories %} <div class="checkbox_container"> - <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /></label><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label> + <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label> </div> {% endfor %} </div>