The branch, QA_3_4 has been updated
       via  9129444381fef0d9b57466219f21deae8fc95582 (commit)
      from  31df8ebb5dd444fc40d566407d9b2a00eee8d1b9 (commit)


- Log -----------------------------------------------------------------
commit 9129444381fef0d9b57466219f21deae8fc95582
Author: Michal Čihař <[email protected]>
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('&#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  = '';


hooks/post-receive
-- 
phpMyAdmin

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
Phpmyadmin-git mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-git

Reply via email to