Selaa lähdekoodia

Remove extra / in url_for parameter for oscar theme

The `filename` parameter of the `url_for` function doesn't need a leading `/`, or else the resulting URL features a double-slash `//` that throws off searx 0.12.0 with Apache 2.4.25 on Debian, resulting in missing favicons.
Hypolite Petovan 7 vuotta sitten
vanhempi
commit
904a8e7e3f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      searx/templates/oscar/macros.html

+ 1
- 1
searx/templates/oscar/macros.html Näytä tiedosto

@@ -5,7 +5,7 @@
5 5
 
6 6
 <!-- Draw favicon -->
7 7
 {% macro draw_favicon(favicon) -%}
8
-    <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='/themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
8
+    <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
9 9
 {%- endmacro %}
10 10
 
11 11
 {%- macro result_link(url, title, classes='') -%}