diff options
author | Adam Tauber <asciimoo@gmail.com> | 2017-10-25 23:56:37 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2017-10-26 00:06:03 +0200 |
commit | 5f758b2d39becf251a9097264d7414ad9c471d62 (patch) | |
tree | 82de6d5afbb0c73669f007225893a05e60d00601 /searx/templates | |
parent | b34124fd8a6b020136ca9656acdb01afceabe96f (diff) | |
download | searxng-5f758b2d39becf251a9097264d7414ad9c471d62.tar.gz searxng-5f758b2d39becf251a9097264d7414ad9c471d62.zip |
[mod] compress saved preferences in url
Diffstat (limited to 'searx/templates')
-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 64706b06b..f4b2c63ea 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -287,7 +287,7 @@ {{ _("These cookies serve your sole convenience, we don't use these cookies to track you.") }} </p> <p style="margin:20px 0;">{{ _('Search URL of the currently saved preferences') }} <small class="text-muted">({{ _('Note: specifying custom settings in the search URL can reduce privacy by leaking data to the clicked result sites.') }})</small>:<br/> - <input readonly="" class="form-control select-all-on-click cursor-text" type="url" value="{{ url_for('index', _external=True) }}?{{ preferences_url_params|e }}{% raw %}&q=%s{% endraw %}"> + <input readonly="" class="form-control select-all-on-click cursor-text" type="url" value="{{ url_for('index', _external=True) }}?preferences={{ preferences_url_params|e }}{% raw %}&q=%s{% endraw %}"> </p> <input type="submit" class="btn btn-primary" value="{{ _('save') }}" /> |