Procházet zdrojové kódy

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 před 7 roky
rodič
revize
904a8e7e3f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      searx/templates/oscar/macros.html

+ 1
- 1
searx/templates/oscar/macros.html Zobrazit soubor

@@ -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='') -%}