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,38 @@
.. include:: /Includes.rst.txt
.. _deprecation-80510:
=====================================================
Deprecation: #80510 - ContentObjectRenderer->URLqMark
=====================================================
See :issue:`80510`
Description
===========
The PHP method :php:`ContentObjectRenderer->URLqMark()` has been marked as deprecated. It was
used to add a ``?`` between two strings if the first one does contain a ``?`` already.
Its main purpose is to add query string parameters to a given URL.
Impact
======
Calling the method above will trigger a deprecation warning.
Affected Installations
======================
Any installation using custom extensions calling this method.
Migration
=========
Implement this functionality with PHP's native :php:`(strpos($haystack, '?') !== false ? '?' : '')`
one-liner directly.
.. index:: PHP-API, Frontend