Refactor generic tables and page index classes #26

Merged
Roflin merged 9 commits from refactor-tables into master 2021-05-17 20:19:18 +02:00
Showing only changes of commit 237f4005bd - Show all commits

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.