commit: ff68546c69b68c4f83eb843f3ecb5789358d2f32
parent: 39f0cd94ee2b96a6fc5818846d0ceaffc99f0b25
Author: Adam Tauber <asciimoo@gmail.com>
Date: Sun, 26 Apr 2015 18:57:03 +0200
[mod] enable category select plugin by default
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/searx/plugins/search_on_category_select.py b/searx/plugins/search_on_category_select.py
@@ -15,8 +15,8 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
(C) 2015 by Adam Tauber, <asciimoo@gmail.com>
'''
from flask.ext.babel import gettext
-name = 'Search on category select'
-description = gettext('Perform search immediately if a category selected')
-default_on = False
+name = gettext('Search on category select')
+description = gettext('Perform search immediately if a category selected. Disable to select multiple categories.')
+default_on = True
js_dependencies = ('js/search_on_category_select.js',)