Skip to content
Snippets Groups Projects
Commit 7c7ba163 authored by Frank Naegler's avatar Frank Naegler Committed by Christian Kuhn
Browse files

[BUGFIX] Catch __PHP_Incomplete_Class classes

Resolves: #66587
Releases: master, 8.7
Change-Id: I444c818e9f81d3595ca68513800c85d9f993f9b4
Reviewed-on: https://review.typo3.org/55685


Reviewed-by: default avatarMathias Schreiber <mathias.schreiber@typo3.com>
Tested-by: default avatarMathias Schreiber <mathias.schreiber@typo3.com>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 6c8a2df3
Branches
Tags
No related merge requests found
......@@ -434,7 +434,7 @@ class Scheduler implements \TYPO3\CMS\Core\SingletonInterface
*/
public function isValidTaskObject($task)
{
return $task instanceof Task\AbstractTask;
return get_class($task->getExecution()) !== '__PHP_Incomplete_Class' && $task instanceof Task\AbstractTask;
}
/**
......
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