You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allthough the method deleteSpecificPages is declared public it is annotated @access private and seems to be used in DataHandler->deletePages only . There a condition prevents further processing if the uid of the page to delete is 0.
It might work to just add a field pid to tx_scheduler_task, assuming this is the only call of our public private method.
Method
TYPO3\CMS\Core\DataHandling\DataHandler->deleteSpecificPage
fails when vcc is installed.This method loops through all tables in
$GLOBALS['TCA']
and tries to find any records on a specific page searching by columnpid
Table
tx_scheduler_task
does't have a fieldpid
. Therefore the database query fails:The extension
scheduler
doesn't registertx_scheduler_task
with TCA butvcc
does extend it.This seems to be the reason why it fails...
Thanks @meisterkaiser for reporting.
The text was updated successfully, but these errors were encountered: