Skip to content

Commit

Permalink
Quotes not properly handled within input #1447
Browse files Browse the repository at this point in the history
  • Loading branch information
Fasse committed Jun 21, 2023
1 parent f806a86 commit 5910a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adm_program/system/classes/CategoryReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public function getConfigArray()
while ($row = $statement->fetch()) {
$values = array();
$values['id'] = $row['crt_id'];
$values['name'] = $row['crt_name'];
$values['name'] = SecurityUtils::encodeHTML($row['crt_name']);
$values['col_fields'] = $row['crt_col_fields'];
$values['selection_role'] = $row['crt_selection_role'];
$values['selection_cat'] = $row['crt_selection_cat'];
Expand Down

0 comments on commit 5910a8d

Please sign in to comment.