---
title: "Deprecation: #97866 - Various public TSFE properties"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-97866-1657185866"
source: "Changelog/12.0/Deprecation-97866-VariousPublicTSFEProperties.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Deprecation: #97866 - Various public TSFE properties

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

## Description

The following properties within TypoScriptFrontendController have been deprecated:

-   `spamProtectEmailAddresses`
-   `intTarget`
-   `extTarget`
-   `fileTarget`
-   `baseUrl`

All of these properties can be accessed through TypoScript's config array.

## Impact

Accessing these properties via TypoScript `getData` or via PHP will trigger a PHP `E_USER_DEPRECATED` error.

## Affected installations

TYPO3 installations with TypoScript options such as `.data = TSFE:fileTarget` or
TYPO3 installations with third-party extensions accessing the properties via PHP.

## Migration

Migrate the access to these properties to use the config property:

In TypoScript you can access the TypoScript properties directly via
`.data = TSFE:config|config|fileTarget` and in PHP code via
`$GLOBALS['TSFE']->config['config']['fileTarget']`.
