---
title: "Breaking: #69863 - Removed deprecated code from EXT:fluid"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-69863-1668719172"
source: "Changelog/8.0/Breaking-69863-RemovedDeprecatedCodeFromExtfluid.rst"
typo3-version: "8.0"
typo3-major: 8
type: "breaking"
issue: 69863
forge: "https://forge.typo3.org/issues/69863"
tags: ["PHP-API", "Fluid"]
rendered: "2026-09-17T12:41:04+00:00"
---

# Breaking: #69863 - Removed deprecated code from EXT:fluid {#breaking-69863-removed-deprecated-code-from-ext-fluid}

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

## Description {#description}

Removed deprecated code from EXT:fluid

The ChangeLog file has been removed.

The renderMode option in `FlashMessagesViewHelper` has been removed.

The following methods have been removed:

-   `StandaloneView::setLayoutRootPath`
-   `StandaloneView::getLayoutRootPath`
-   `StandaloneView::setPartialRootPath`
-   `StandaloneView::getPartialRootPath`
-   `AbstractFormFieldViewHelper::getValue`

The following class has been removed:

`IconViewHelper`

## Impact {#impact}

Using the methods above directly in any third party extension will result in a fatal error.

Relying on the renderMode option might lead to different frontend output.

## Affected Installations {#affected-installations}

Instances which use calls to the methods above, use the removed `IconViewHelper` or use the `renderMode` option in `FlashMessagesViewHelper`.

## Migration {#migration}

-   For `StandaloneView::setLayoutRootPath` use `StandaloneView::setLayoutRootPaths` instead.
-   For `StandaloneView::getLayoutRootPath` use `StandaloneView::getLayoutRootPaths` instead.
-   For `StandaloneView::setPartialRootPath` use `StandaloneView::setPartialRootPaths` instead.
-   For `StandaloneView::getPartialRootPath` use `StandaloneView::setPartialRootPaths` instead.

Keep in mind that these methods expect an **array** instead of a string.

For `IconViewHelper` use `TYPO3CMSCoreViewHelpersIconViewHelper` instead.
