Revert "More of missing escaping"

This reverts commit 599c9b5e1b.
This commit is contained in:
Michal Čihař
2011-08-19 12:06:04 +02:00
parent 599c9b5e1b
commit 414363d38d

View File

@@ -249,9 +249,9 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
<td nowrap="nowrap"> <td nowrap="nowrap">
<?php <?php
if (isset($pk_array[$row['Field']])) { if (isset($pk_array[$row['Field']])) {
echo '<u>' . htmlspecialchars($field_name) . '</u>'; echo '<u>' . $field_name . '</u>';
} else { } else {
echo htmlspecialchars($field_name); echo $field_name;
} }
?> ?>
</td> </td>