소스 검색

[mod] enable category select plugin by default

Adam Tauber 10 년 전
부모
커밋
ff68546c69
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      searx/plugins/search_on_category_select.py

+ 3
- 3
searx/plugins/search_on_category_select.py 파일 보기

@@ -15,8 +15,8 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
15 15
 (C) 2015 by Adam Tauber, <asciimoo@gmail.com>
16 16
 '''
17 17
 from flask.ext.babel import gettext
18
-name = 'Search on category select'
19
-description = gettext('Perform search immediately if a category selected')
20
-default_on = False
18
+name = gettext('Search on category select')
19
+description = gettext('Perform search immediately if a category selected. Disable to select multiple categories.')
20
+default_on = True
21 21
 
22 22
 js_dependencies = ('js/search_on_category_select.js',)