Apply htmlspecialchars to basic values.

This commit is contained in:
Aaron van Geffen 2021-02-17 22:44:26 +01:00
parent 4bf4641428
commit 237f4005bd
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class GenericTable
{
// Basic option: simply take a use a particular data property.
case 'value':
$value = $rowData[$options['data']];
$value = htmlspecialchars($rowData[$options['data']]);
break;
// Processing via a lambda function.