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 14:06:04 +0400
committerMichal Čihař <michal@cihar.com>2011-08-19 14:06:04 +0400
commit414363d38d788c1c126d0aafc4eda69c0a8157c8 (patch)
tree98e0cfdbe3185e5e48ad7a7f3d3efb70952c53ac /db_datadict.php
parent599c9b5e1bacc01a9c9bb6621ec1ed3279c4104a (diff)
Revert "More of missing escaping"
This reverts commit 599c9b5e1bacc01a9c9bb6621ec1ed3279c4104a.
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 6981462972..938ebf7a1a 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -249,9 +249,9 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
<td nowrap="nowrap">
<?php
if (isset($pk_array[$row['Field']])) {
- echo '<u>' . htmlspecialchars($field_name) . '</u>';
+ echo '<u>' . $field_name . '</u>';
} else {
- echo htmlspecialchars($field_name);
+ echo $field_name;
}
?>
</td>