---
title: "Deprecation: #88792 - forceTemplateParsing in TSFE and TemplateService"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-88792"
source: "Changelog/10.0/Deprecation-88792-ForceTemplateParsingInTSFEAndTemplateService.rst"
typo3-version: "10.0"
typo3-major: 10
type: "deprecation"
issue: 88792
forge: "https://forge.typo3.org/issues/88792"
tags: ["Frontend", "PHP-API", "PartiallyScanned", "ext:core"]
rendered: "2026-09-23T19:53:57+00:00"
---

# Deprecation: #88792 - forceTemplateParsing in TSFE and TemplateService {#deprecation-88792}

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

## Description {#description}

-   `\TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::forceTemplateParsing` and
-   `\TYPO3\CMS\Core\TypoScript\TemplateService::forceTemplateParsing`

have been marked as deprecated and replaced by Context API.

## Impact {#impact}

Setting either `forceTemplateParsing` of `TypoScriptFrontendController` or `TemplateService`
will trigger a PHP `E_USER_DEPRECATED` error.

## Affected Installations {#affected-installations}

All installations setting or reading `$TSFE->forceTemplateParsing` or `TemplateService->forceTemplateParsing`.

## Migration {#migration}

Use the Context API:

```
GeneralUtility::makeInstance(Context::class)->getPropertyFromAspect('typoscript', 'forcedTemplateParsing');
$context->setAspect('typoscript', GeneralUtility::makeInstance(TypoScriptAspect::class, true));

```
