Skip to content

Commit

Permalink
Fix unwanted escaping
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
  • Loading branch information
MauricioFauth committed May 4, 2017
1 parent a35f879 commit 3fad894
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/console/toolbar.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% for content in contentArray %}
{% if content is defined %}
<div class="{{ content[0] }}">
{{ content['image'] ? content['image'] }}
{{ content['image'] is defined ? content['image']|raw }}
<span>{{ content[1] }}</span>
</div>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion templates/database/structure/browse_table.twig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<a href="sql.php{{ tbl_url_query }}&amp;pos=0">
{{ title }}
{{ title|raw }}
</a>
2 changes: 1 addition & 1 deletion templates/database/structure/empty_table.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<a class="truncate_table_anchor ajax" href="sql.php{{ tbl_url_query }}&amp;sql_query=
{{- sql_query }}&amp;message_to_show={{ message_to_show }}">
{{ title }}
{{ title|raw }}
</a>
2 changes: 1 addition & 1 deletion templates/database/structure/search_table.twig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<a href="tbl_select.php{{ tbl_url_query }}">
{{ title }}
{{ title|raw }}
</a>

0 comments on commit 3fad894

Please sign in to comment.