Project

General

Profile

Actions

Bug #99079

open

User tsconfig overridden by subgroups

Added by Rémy DANIEL over 1 year ago. Updated over 1 year ago.

Status:
New
Priority:
Should have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2022-11-14
Due date:
% Done:

0%

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

Description

Given the following TSconfig file:

# EXT:site/Configuration/TSconfig/user.tsconfig
options.clearCache.pages = 0

Given the following BE group setup:

  • Group Default
    tsconfig: <INCLUDE_TYPOSCRIPT: source="FILE:EXT:site/Configuration/TSconfig/user.tsconfig">
  • Group Special
    subgroups: Default
  • Group Advanced editors
    subgroups: Default
    tsconfig: options.clearCache.pages = 1

And given a user member of the groups "Advanced editors" and "Special".

This user does not see the clearCache.pages button.

The reason is the order in the resolution of the subgroups, and the tsconfig parsing (see \TYPO3\CMS\Core\Authentication\BackendUserAuthentication::prepareUserTsConfig)
The resolved subgroups are : Default, Advanced editors, Default, Special
For each of this groups, the TSconfig is computed:

# TSCONFIG of group Default
# INCLUDE EXT:site/Configuration/TSconfig/user.tsconfig
options.clearCache.pages = 0

# TSCONFIG of group Advanced editors
options.clearCache.pages = 1

# TSCONFIG of group Default
# EXT:site/Configuration/TSconfig/user.tsconfig
options.clearCache.pages = 0

# TSCONFIG of group Special

At the end, the all TSconfig is parsed, and options.clearCache.pages will be 0.

A possible fix will be that the parser includes file only once.

My workaround was to remove the subgroup Default from the group Special.

Actions #1

Updated by Rémy DANIEL over 1 year ago

  • Subject changed from User tsconfig: including the same file overrides to User tsconfig overridden by subgroups
Actions

Also available in: Atom PDF