Revert "Revert "More of missing escaping""
This reverts commit 414363d38d
.
Okay, it needs to be escaped here, but not escaped above.
This commit is contained in:
@@ -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>' . $field_name . '</u>';
|
echo '<u>' . htmlspecialchars($field_name) . '</u>';
|
||||||
} else {
|
} else {
|
||||||
echo $field_name;
|
echo htmlspecialchars($field_name);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
|
Reference in New Issue
Block a user