[Phpmyadmin-git] [SCM] phpMyAdmin branch, MAINT_3_4_3, updated. RELEASE_3_4_3RC1-9-g9fc6e35

The branch, MAINT_3_4_3 has been updated via 9fc6e35cfd1d8270d943f5577807a3c79f5c6168 (commit) from d3b67a35a0df4969273529501788c68b4fddcc24 (commit) - Log ----------------------------------------------------------------- commit 9fc6e35cfd1d8270d943f5577807a3c79f5c6168 Author: Michal Čihař <mcihar@suse.cz> Date: Mon Jun 27 16:09:22 2011 +0200 Avoid double escaping ----------------------------------------------------------------------- Summary of changes: tbl_structure.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tbl_structure.php b/tbl_structure.php index 077dbcf..7d380b4 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -252,7 +252,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) { // for the case ENUM('–','“') $type = htmlspecialchars($type); if(strlen($type) > $GLOBALS['cfg']['LimitChars']) { - $type = '<abbr title="' . htmlspecialchars($type) . '">' . substr($type, 0, $GLOBALS['cfg']['LimitChars']) . '</abbr>'; + $type = '<abbr title="' . $type . '">' . substr($type, 0, $GLOBALS['cfg']['LimitChars']) . '</abbr>'; } $type_nowrap = ''; hooks/post-receive -- phpMyAdmin
participants (1)
-
Marc Delisle