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ř <michal@cihar.com>2011-08-19 13:56:43 +0400
committerMichal Čihař <michal@cihar.com>2011-08-19 13:56:43 +0400
commit68da79da00140730542d6c58e074d31363e3c6aa (patch)
treec3345c2c5ea64ba71cbdebc499e8be97f1b4a350 /db_datadict.php
parent9d011bbbcd20d6beb7b9b0a3002d132565a5e498 (diff)
parent599c9b5e1bacc01a9c9bb6621ec1ed3279c4104a (diff)
Merge branch 'QA_3_4'
Diffstat (limited to 'db_datadict.php')
-rw-r--r--db_datadict.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_datadict.php b/db_datadict.php
index 7f6a27ac3b..0331e4bda3 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -226,9 +226,9 @@ while ($row = PMA_DBI_fetch_row($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>