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
.. _deprecation-80440:
==========================================================
Deprecation: #80440 - EXT:lowlevel ArrayBrowser->wrapValue
==========================================================
See :issue:`80440`
Description
===========
The method :php:`ArrayBrowser->wrapValue` in EXT:lowlevel has been marked as deprecated, since the sole
logic was to wrap the incoming string into :php:`htmlspecialchars()`.
Impact
======
Calling the method will trigger a deprecation warning.
Affected Installations
======================
Any TYPO3 installation using the EXT:lowlevel ArrayBrowser class in a custom extension.
Migration
=========
Remove the call to the method and directly use :php:`htmlspecialchars()` instead.
.. index:: PHP-API, ext:lowlevel