GetRecords broken since TYPO3 v7
Closed this issue · 0 comments
vertexvaar commented
class.tx_caretakerinstance_Operation_GetRecords.php
still tries to load the TCA via $GLOBALS['TSFE']->includeTCA();
which does not exist anymore.
Please remove \tx_caretakerinstance_Operation_GetRecords::includeTCA
completely and replace /class.tx_caretakerinstance_Operation_GetRecords.php:129
$this->includeTCA();
with \TYPO3\CMS\Frontend\Utility\EidUtility::initTCA();
like it was done in Web/typo3conf/ext/caretaker_instance/classes/class.tx_caretakerinstance_Operation_GetRecord.php:75