---
title: "Breaking: #53542 - Removal of deprecated code in sysext fluid"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-53542"
source: "Changelog/7.0/Breaking-53542-DeprecatedCodeRemovalInFluid.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Breaking: #53542 - Removal of deprecated code in sysext fluid

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

## Description

### ContainerViewHelper

The following options have been removed from the ViewHelper:

-   `enableJumpToUrl`
-   `addCssFile`, use `includeCssFiles` instead
-   `addJsFile`, use `includeJsFiles` instead

### AbstractBackendViewHelper

The usage of `$GLOBALS['SOBE']` is removed for retrieving the DocumentTemplate instance.
Use `->getDocInstance()` instead.

### TemplateView

The following methods have been removed:

-   `getTemplateRootPath()` is removed, use `getTemplateRootPaths()` instead
-   `getPartialRootPath()` is removed, use `setPartialRootPaths()` instead
-   `getLayoutRootPath()` is removed, use `getLayoutRootPaths()` instead

## Impact

A call to any of the aforementioned methods by third party code will result in a fatal PHP error.

## Affected installations

Any installation which contains third party code still using these deprecated methods.

## Migration

Replace the calls with the suggestions outlined above.
