-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
In \TYPO3\CMS\v76\Install\Updates\MigrateMediaToAssetsForTextMediaCe::executeUpdate() there's the forth parameter in leftJoin missing. The join is processed without any condition.
Should be:
->leftJoin('sys_file_reference','tt_content','tt_content',
$updateQueryBuilder->expr()->and(
$updateQueryBuilder->expr()->eq(
'uid_foreign', $updateQueryBuilder->quoteIdentifier('tt_content.uid')
),
$updateQueryBuilder->expr()->eq(
'tablenames', $updateQueryBuilder->createNamedParameter('tt_content', \PDO::PARAM_STR)
),
$updateQueryBuilder->expr()->eq(
'fieldname', $updateQueryBuilder->createNamedParameter('media', \PDO::PARAM_STR)
),
)
)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels