Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTechnoknol <technoknol@users.noreply.github.com>2019-05-20 14:53:03 +0300
committerWilliam Desportes <williamdes@wdes.fr>2019-05-20 15:13:38 +0300
commit07e4d7638ebac6cf33f949fa9d907dfcf6d150f6 (patch)
treefbe96213341d13e8ed0f40c97be5067e48d00d48 /templates
parent073169f6f39b083ea19ca6ae365cf5d641c46e92 (diff)
Fix #15262 Incorrect display of charset column : <dfn title=
Signed-off-by: Shyam Makwana <shyam.makwana18@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/database/structure/structure_table_row.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/database/structure/structure_table_row.twig b/templates/database/structure/structure_table_row.twig
index c1177c9ef9..0926eb70b9 100644
--- a/templates/database/structure/structure_table_row.twig
+++ b/templates/database/structure/structure_table_row.twig
@@ -120,7 +120,7 @@
{% if not (show_charset > 1) %}
{% if charset|length > 0 %}
<td class="nowrap">
- {{ charset }}
+ {{ charset|raw }}
</td>
{% endif %}
{% endif %}