Breaking: #96205 - Removal of last relativeToCurrentScript remains
See forge#96205
Description
Due to the removal of relative paths in the FAL API (forge#95027 and
forge#96201) the $used
argument in
media renderers render
method got obsolete. The same applies to
the $relative
argument of Avatar->get
.
Therefore, $used
is removed as last
argument from following PHP class methods:
\TYPO3\
CMS\ Core\ Resource\ Rendering\ Audio Tag Renderer->render () \TYPO3\
CMS\ Core\ Resource\ Rendering\ File Renderer Interface->render () \TYPO3\
CMS\ Core\ Resource\ Rendering\ Video Tag Renderer->render () \TYPO3\
CMS\ Core\ Resource\ Rendering\ Vimeo Renderer->render () \TYPO3\
CMS\ Core\ Resource\ Rendering\ Youtube Renderer->render ()
Further is $relative
removed as last argument
from \TYPO3\
.
Impact
Passing the removed argument to one of the mentioned methods does no longer have any effect.
Affected Installations
Installations, passing the removed argument to one of the mentioned methods, which is rather unlikely as those methods are usually not called by extension code directly.
Migration
Remove the corresponding argument from the methods.