XSS security fix

This commit is contained in:
Serghey Rodin 2014-12-19 00:39:08 +02:00
commit ba913ba0e7
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@
<td class="log" width="239px"><b><?php echo $data[$key]['RECORD'] ?></b></td>
<td class="log-counter-value" width="57px"><?php echo $data[$key]['TYPE'] ?></td>
<td class="log-counter-value" width="62px"><?php echo $data[$key]['PRIORITY'] ?></td>
<td class="log-counter-value" ><?php echo $data[$key]['VALUE'] ?></td>
<td class="log-counter-value" ><?php echo htmlspecialchars($data[$key]['VALUE'], ENT_QUOTES, 'UTF-8') ?></td>
</tr>
</table>
</td>