Deprecation: #85801 - GeneralUtility::explodeUrl2Array - 2nd method argument
See forge#85801
Description
The second argument in
TYPO3\
has been marked as deprecated.
Setting this (optional) argument to
true
calls the native PHP function
parse_
, which
should be used instead directly.
Impact
Calling the method with an explicitly set second argument will trigger a PHP
E_
error.
Affected Installations
Any TYPO3 installation with a custom extension calling the method above with a second method argument.
Migration
If the second argument was set to
true
before, use the native PHP function
parse_
, if the
second parameter was set to
false
before, just remove it from the method call.