Skip to content
Snippets Groups Projects
Commit 67041879 authored by Torben Hansen's avatar Torben Hansen Committed by Oliver Bartsch
Browse files

[BUGFIX] Fix exception in filelist when nullable columns are shown

When nullable columns are shown in filelist module, an
exception is thrown, because null may be passed to
htmlspecialchars().

This change ensures that an empty string is passed to
htmlspecialchars(), if the column value is null. Also
the last parameter from the getProcessedValueExtra()
function call is removed, since it equals the functions
default value for the $forceResult parameter.

Resolves: #97316
Releases: main, 11.5
Change-Id: I7d82aea0ed073f6f30944d53e0803ce848e30e53
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/74198


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent 04818c84
Branches
Tags
No related merge requests found
......@@ -726,13 +726,12 @@ class FileList
}
} else {
$theData[$field] = htmlspecialchars(
BackendUtility::getProcessedValueExtra(
(string)BackendUtility::getProcessedValueExtra(
$this->getConcreteTableName($field),
$field,
$fileObject->getProperty($field),
$this->fixedL,
$fileObject->getMetaData()->offsetGet('uid'),
true
$fileObject->getMetaData()->offsetGet('uid')
)
);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment