---
title: "Feature: #22439 - Allow nested GET-params in config.linkVars"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-22439"
source: "Changelog/9.0/Feature-22439-AllowNestedGET-paramsInConfiglinkVars.rst"
typo3-version: "9.0"
typo3-major: 9
type: "feature"
issue: 22439
forge: "https://forge.typo3.org/issues/22439"
tags: ["Frontend", "TypoScript"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #22439 - Allow nested GET-params in config.linkVars {#feature-22439}

See [forge#22439](https://forge.typo3.org/issues/22439)

## Description {#description}

TypoScript setting `config.linkVars` configures which parameters should be passed on with links in TYPO3.
It is now possible to specify nested GET parameters there.

Example:

```typoscript
config.linkVars = L(0-2),tracking|green(0-5)
```

With the above configuration the following example GET parameters will be kept:

&L=1&tracking\[green\]=3

But a get parameter like tracking\[blue\] will not be kept.

The value constraint in round brackets works in the same way as for not nested GET parameters.
