Project

General

Profile

Actions

Bug #82510

closed

options.clearCache.all = 0 in user TsConfig also excludes admin users

Added by Christian Müller over 6 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2017-09-19
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

As the documentation says:

options.clearCache.all

This will allow a non-admin user to clear frontend and page-related caches, plus some backend-related caches (that is everything including templates).

With this option set to 0 (zero), which is the default value, an admin user should be able to "Flush all caches". But that's not the case.
Settings it to 1 allows admin and non-admin users to "Flush all caches".

/typo3/sysext/backend/Classes/Backend/ToolbarItems/ClearCacheToolbarItem.php:66

if ($backendUser->getTSConfigVal('options.clearCache.all') || ($backendUser->isAdmin() && $backendUser->getTSConfigVal('options.clearCache.all') !== '0')) {

Should be
if ($backendUser->getTSConfigVal('options.clearCache.all') || $backendUser->isAdmin()) {

/typo3/sysext/core/Classes/DataHandling/DataHandler.php:8539

if ($this->BE_USER->getTSConfigVal('options.clearCache.all') || ($this->admin && $this->BE_USER->getTSConfigVal('options.clearCache.all') !== '0')) {

Should be
if ($this->BE_USER->getTSConfigVal('options.clearCache.all') || $this->admin) {

Actions

Also available in: Atom PDF