Skip to content

Commit

Permalink
Fixed issue #19003: [security] XSS Reflected via import file function (
Browse files Browse the repository at this point in the history
…#3369)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
  • Loading branch information
gabrieljenik and lapiudevgit committed Aug 21, 2023
1 parent d6617e9 commit bb97768
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}
$warningSummary .= "<div class='badtokenlist' id='duplicateslist'><ul>";
foreach ($duplicatelist as $data) {
$warningSummary .= "<li>" . $data . "</li>";
$warningSummary .= "<li>" . CHtml::encode($data) . "</li>";
}
$warningSummary .= "</ul></div></li>";
}
Expand Down

0 comments on commit bb97768

Please sign in to comment.