Actions
Task #89257
closedTypoScriptTemplateModuleController handles unused clear_all_cache paramter
Status:
Closed
Priority:
Should have
Assignee:
Category:
Code Cleanup
Target version:
Start date:
2019-09-25
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
The following code in typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php is unused:
// Clear the cache if requested
if (($request->getParsedBody()['clear_all_cache'] ?? $request->getQueryParams()['clear_all_cache'] ?? false)) {
$tce = GeneralUtility::makeInstance(DataHandler::class);
$tce->start([], []);
$tce->clear_cacheCmd('all');
}
The frontend part that issued the GET parameter clear_all_cache=1 was
removed in 2008 with the following commit:
https://github.com/TYPO3/TYPO3.CMS/commit/94fb08233d
The handling of this unused parameter should therefore be removed.
Actions