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.
Updated by Gerrit Code Review about 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/61804
Updated by Benjamin Franzke about 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset ebaf66d47438ae4b417d68489e3e9cce6e62ae86.
Actions