More of missing escaping

This commit is contained in:
Michal Čihař
2011-08-19 11:56:38 +02:00
parent e7d6cab2a2
commit 599c9b5e1b

View File

@@ -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>