TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,35 @@
.. include:: /Includes.rst.txt
.. _breaking-73504:
===============================================
Breaking: #73504 - Make TimeTracker a singleton
===============================================
See :issue:`73504`
Description
===========
The class `\TYPO3\CMS\Core\TimeTracker\TimeTracker` has been marked as singleton and is no longer stored in `$GLOBALS['TT']`.
Impact
======
Using methods of `$GLOBALS['TT']` will result in a fatal error.
Affected Installations
======================
All installations or 3rd party extensions using `$GLOBALS['TT']`.
Migration
=========
Use `\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\TimeTracker\TimeTracker::class)` instead.
.. index:: PHP-API