The branch, QA_3_4 has been updated
       via  da6e51d00780dd941f4b496c69ae15d0d09bd3a3 (commit)
       via  8cec4ac91ce0da8e73d8b8313cdb5c34d03bdb4b (commit)
      from  414363d38d788c1c126d0aafc4eda69c0a8157c8 (commit)


- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 db_datadict.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/db_datadict.php b/db_datadict.php
index 938ebf7..b910c76 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -227,7 +227,7 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
         } else {
             $row['Default'] = htmlspecialchars($row['Default']);
         }
-        $field_name = htmlspecialchars($row['Field']);
+        $field_name = $row['Field'];
 
         if (PMA_MYSQL_INT_VERSION < 50025
          && ! 
empty($analyzed_sql[0]['create_table_fields'][$field_name]['type'])
@@ -249,9 +249,9 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
     <td nowrap="nowrap">
         <?php
         if (isset($pk_array[$row['Field']])) {
-            echo '<u>' . $field_name . '</u>';
+            echo '<u>' . htmlspecialchars($field_name) . '</u>';
         } else {
-            echo $field_name;
+            echo htmlspecialchars($field_name);
         }
         ?>
     </td>


hooks/post-receive
-- 
phpMyAdmin

------------------------------------------------------------------------------
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
_______________________________________________
Phpmyadmin-git mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-git

Reply via email to