diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2019-12-24 11:37:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-24 11:37:33 +0100 |
commit | 6d232e9b695c2553b7594efe00c4f63aa96fc62d (patch) | |
tree | 30cc34e7c9aae19509f042709426b42b9c3c08c5 | |
parent | 3e14bf4d2786ce5f2a61684cf16744700e670e60 (diff) | |
parent | 8bea927bb02e02754834d6f9692942f621bd21c5 (diff) | |
download | searxng-6d232e9b695c2553b7594efe00c4f63aa96fc62d.tar.gz searxng-6d232e9b695c2553b7594efe00c4f63aa96fc62d.zip |
Merge pull request #1787 from finn0/fix/infobox
[Fix] oscar: no HTML escaping prior to output
-rw-r--r-- | searx/templates/oscar/infobox.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/infobox.html b/searx/templates/oscar/infobox.html index 9f5e58d2b..9802f11e2 100644 --- a/searx/templates/oscar/infobox.html +++ b/searx/templates/oscar/infobox.html @@ -6,7 +6,7 @@ <div class="panel-body"> {% if infobox.img_src %}<img class="img-responsive center-block infobox_part" src="{{ image_proxify(infobox.img_src) }}" alt="{{ infobox.infobox }}" />{% endif %} - {% if infobox.content %}<bdi><p class="infobox_part">{{ infobox.content }}</p></bdi>{% endif %} + {% if infobox.content %}<bdi><p class="infobox_part">{{ infobox.content | safe }}</p></bdi>{% endif %} {% if infobox.attributes -%} <table class="table table-striped infobox_part"> |