Skip to content

Commit

Permalink
Fix stored xss issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Gneady committed Jul 3, 2021
1 parent 8555d61 commit 953bb27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/hooks/SummaryReport.php
Expand Up @@ -835,7 +835,7 @@ private function section_data_table() {
?>
<tr>
<td class="text-right hidden row-number"><?php echo ++$row_number; ?></th>
<td class="text-left item-label"><?php echo $item['label']; ?></td>
<td class="text-left item-label"><?php echo safe_html($item['label']); ?></td>

<td class="text-right item-value"><?php echo $value1; ?></td>
<?php if(isset($this->date_field)) { ?>
Expand Down

0 comments on commit 953bb27

Please sign in to comment.