---
title: "Breaking: #102793 - PageRepository->enableFields hook removed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-102793-1704798752"
source: "Changelog/13.0/Breaking-102793-PageRepository-enableFieldsHookRemoved.rst"
typo3-version: "13.0"
typo3-major: 13
type: "breaking"
issue: 102793
forge: "https://forge.typo3.org/issues/102793"
tags: ["Database", "Frontend", "PHP-API", "NotScanned", "ext:core"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #102793 - PageRepository->enableFields hook removed {#breaking-102793-1704798752}

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

## Description {#description}

One of the common PHP APIs used in TYPO3 Core for fetching records is
`\TYPO3\CMS\Core\Domain\Repository\PageRepository`. The method
`enableFields()` is marked as deprecated, and the according hook
`$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_page.php']['addEnableColumns']`
has been removed.

## Impact {#impact}

Hook listeners will not be executed anymore.

## Affected installations {#affected-installations}

TYPO3 installations with custom extensions using the mentioned hook.

## Migration {#migration}

The hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_page.php']['addEnableColumns']`
can be replaced by a listener to the newly introduced
[PSR-14 event](https://docs.typo3.org/permalink/changelog:feature-102793-1704805673).
