Commit 3b024c38 authored by Alexandre Dulaunoy's avatar Alexandre Dulaunoy
Browse files

(temp) Bug fix: replace HTML/XML encoded value of "!" with nothing

Like "joomla%21" -> "joomla"

Maybe this needs to be reviewed at the import process to ensure
the XML elements encoded are properly encoded also in the Redis cache.
parent b6b88ba4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
              {% if product != None %}
                {% for p in product %}
                  <tr>
                    <td><a href="/search/{{ vendor }}/{{ p }}">{{ p|htmlDecode }}</a></td>
                    <td><a href="/search/{{ vendor }}/{{ p|replace("%21","") }}">{{ p|htmlDecode }}</a></td>
                  </tr>
                {% endfor %}
              {% else  %}