From 2a7c32ab06b58a90e9600b53723347fad70bd253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20M=C3=BCller?= <2566282+brotkrueml@users.noreply.github.com> Date: Thu, 14 May 2026 06:26:52 +0200 Subject: [PATCH] Synchronize config.linkVars section with tsref.xml (#1726) This also removes the mention of the (in TYPO3 v14) removed `$GLOBALS['TSFE']` key. See: https://github.com/TYPO3/typo3/blob/14.3/typo3/sysext/backend/Resources/Private/tsref.xml#L423-L431 Related: https://github.com/TYPO3-Documentation/Changelog-To-Doc/issues/1074 Releases: main, 14.3, 13.4 (cherry picked from commit 6983669678ad29cdec41829a478014071a47ce4b) --- Documentation/TopLevelObjects/Config.rst | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Documentation/TopLevelObjects/Config.rst b/Documentation/TopLevelObjects/Config.rst index 4a7d81722..83b05ebe3 100644 --- a/Documentation/TopLevelObjects/Config.rst +++ b/Documentation/TopLevelObjects/Config.rst @@ -594,14 +594,15 @@ Properties of 'config' :type: list :Example: :ref:`setup-config-linkvars` - :php:`HTTP_GET_VARS`, which is passed on in links in TYPO3. It - is compiled into a string stored in :php:`$GLOBALS['TSFE']->linkVars` + :php:`HTTP_GET_VARS`, which should be passed on with links in TYPO3. + This is compiled into a string. The values are rawurlencoded in PHP. You can specify a range of valid values by appending a () after each - value. If the range doesn't match, the variable won't be appended to - links. This prevents the cache system getting flooded with forged values. + value. If the range does not match, the variable won't be appended to + links. This is very important to prevent that the cache system gets + flooded with forged values. The range can contain one of the following values: @@ -612,7 +613,7 @@ Properties of 'config' `[a]\|[b]\|[c]` A list of allowed strings (whitespace will be removed) `/[regex]/` - Match a regular expression (PCRE style) + Match against a regular expression (PCRE style) You can use the pipe character (|) to access nested properties.