diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-03-12 19:21:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-12 19:21:46 +0100 |
| commit | a1a492baed8f6d531ea95cf4fde539e48328f3cb (patch) | |
| tree | cfb20a8974598c0fd90d2426220e95366cef480c /searx/templates/oscar | |
| parent | af3e969c5a4d7b9170076ffc74ec52b24f00915c (diff) | |
| parent | 99e0651ceaffdc9f57ca4fc1be50fdec8864f4cb (diff) | |
Merge pull request #2641 from dalf/disable_http_by_default
[mod] by default allow only HTTPS, not HTTP
Diffstat (limited to 'searx/templates/oscar')
| -rw-r--r-- | searx/templates/oscar/preferences.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index fc20b8ca5..6253b9858 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -230,7 +230,7 @@ <td class="onoff-checkbox"> {{ checkbox_toggle('engine_' + search_engine.name|replace(' ', '_') + '__' + categ|replace(' ', '_'), (search_engine.name, categ) in disabled_engines) }} </td> - <th scope="row">{% if not search_engine.https_support %}{{ icon('exclamation-sign', 'No HTTPS') }}{% endif %} {{ search_engine.name }}</td></th> + <th scope="row">{% if search_engine.enable_http %}{{ icon('exclamation-sign', 'No HTTPS') }}{% endif %} {{ search_engine.name }}</td></th> <td class="name">{{ shortcuts[search_engine.name] }} <td>{{ support_toggle(stats[search_engine.name].supports_selected_language) }}</td> <td>{{ support_toggle(search_engine.safesearch==True) }}</td> |