Skip to content

Commit

Permalink
Another fix for CVE-2020-35132 - closes #137, missed from #130
Browse files Browse the repository at this point in the history
  • Loading branch information
leenooks committed Apr 1, 2023
1 parent c84b2d6 commit 1650d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PageRender.php
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ protected function drawOldValuesAttribute($attribute) {
final protected function drawOldValueAttribute($attribute,$i) {
if (DEBUGTMP) printf('<font size=-2>%s</font><br />',__METHOD__);

echo $attribute->getOldValue($i);
echo htmlspecialchars($attribute->getOldValue($i));
}

/** DRAW DISPLAYED CURRENT VALUES **/
Expand Down

0 comments on commit 1650d6a

Please sign in to comment.