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:
authorMichal Čihař <mcihar@suse.cz>2011-06-27 18:09:22 +0400
committerMarc Delisle <marc@infomarc.info>2011-06-27 18:20:29 +0400
commit9fc6e35cfd1d8270d943f5577807a3c79f5c6168 (patch)
tree68bc41b5d2da631bcff6dd653333f2da80e969c3
parentd3b67a35a0df4969273529501788c68b4fddcc24 (diff)
Avoid double escapingRELEASE_3_4_3
-rw-r--r--tbl_structure.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_structure.php b/tbl_structure.php
index 077dbcf495..7d380b4197 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('&#8211;','&ldquo;')
$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 = '';