Browse Source

[fix] search category checkbox whitespaces

asciimoo 11 years ago
parent
commit
88b5169f8d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/templates/search.html

+ 1 - 1
searx/templates/search.html

@@ -6,7 +6,7 @@
     <div>
     {% for category in categories %}
         <div class="checkbox_container">
-            <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category|replace(' ', '_') }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category }}" class="cb"></label><label for="checkbox_{{ category }}">{{ 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(' ', '_') }}" class="cb"></label><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label>
         </div>
     {% endfor %}
     </div>