diff options
author | François Revol <revol@free.fr> | 2016-10-09 01:12:56 +0200 |
---|---|---|
committer | François Revol <revol@free.fr> | 2016-10-09 01:12:56 +0200 |
commit | 96cfdc77d241fff9c6ca500a919b3d3f598e414d (patch) | |
tree | 40c0ac53ea42641f6388467986a7b3eeeacc7058 /searx/templates/legacy | |
parent | 8b10eb6fe197cf136fa26f86e17dee1ffb851773 (diff) | |
download | searxng-96cfdc77d241fff9c6ca500a919b3d3f598e414d.tar.gz searxng-96cfdc77d241fff9c6ca500a919b3d3f598e414d.zip |
[fix] set the title on the opensearch link tag
Firefox uses the title attributes instead of the ShortName from the xml file
as set in 0fbd7052 which closed #405
Diffstat (limited to 'searx/templates/legacy')
-rw-r--r-- | searx/templates/legacy/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/legacy/base.html b/searx/templates/legacy/base.html index a2c38fef7..da19741cb 100644 --- a/searx/templates/legacy/base.html +++ b/searx/templates/legacy/base.html @@ -17,7 +17,7 @@ {% endblock %} {% block meta %}{% endblock %} {% block head %} - <link title="searx" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/> + <link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/> {% endblock %} </head> <body> |