---
title: "Breaking: #107566 - Removed \"afterInitializeCurrentPage\" hook"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-107566-1759226580"
source: "Changelog/14.0/Breaking-107566-RemovedAfterInitializeCurrentPageHook.rst"
typo3-version: "14.0"
typo3-major: 14
type: "breaking"
issue: 107566
forge: "https://forge.typo3.org/issues/107566"
tags: ["Backend", "ext:form", "FullyScanned"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #107566 - Removed "afterInitializeCurrentPage" hook {#breaking-107566-1759226580}

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

## Description {#description}

The hook
`$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['afterInitializeCurrentPage']`
has been removed in favor of the PSR-14 event
`\TYPO3\CMS\Form\Event\AfterCurrentPageIsResolvedEvent`.

## Impact {#impact}

Hook implementations registered under `afterInitializeCurrentPage` are
no longer executed in TYPO3 v14.0 and later.

## Affected installations {#affected-installations}

TYPO3 installations with custom extensions using this hook are affected.

The extension scanner reports any usage as a weak match.

## Migration {#migration}

The hook was removed without a deprecation phase to allow extensions to work
with both TYPO3 v13 (using the hook) and TYPO3 v14+ (using the new event)
simultaneously.

Use the [PSR-14 event](https://docs.typo3.org/permalink/changelog:feature-107566-1759226649) instead to allow
greater influence over the form rendering process. Since the event is
dispatched at a later point, it allows more extensive modifications than the
previous hook.
