diff --git a/typo3/sysext/install/Classes/Service/ClearCacheService.php b/typo3/sysext/install/Classes/Service/ClearCacheService.php index 455b46876da0029d7cf3def8284d13e10f8a5430..73a97aa3ba520fcdf2d6e0ca2783dab649ac1fe6 100644 --- a/typo3/sysext/install/Classes/Service/ClearCacheService.php +++ b/typo3/sysext/install/Classes/Service/ClearCacheService.php @@ -65,6 +65,10 @@ class ClearCacheService { $tableName = $table['Name']; if (substr($tableName, 0, 3) === 'cf_') { $database->exec_TRUNCATEquery($tableName); + } elseif ($tableName === 'cache_treelist') { + // cache_treelist is not implemented in the caching framework. + // clear this table manually + $database->exec_TRUNCATEquery('cache_treelist'); } }