Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 673 Bytes

DEPRECATED.md

File metadata and controls

20 lines (13 loc) · 673 Bytes

Deprecated features

Controller::sendFileToBrowser()

Using Controller::sendFileToBrowser() has been deprecated in Contao 5.3 and will no longer work in Contao 6. Use the Symfony BinaryFileResponse instead.

Base tag

Relying on the <base> tag has been deprecated in Contao 5.0 and will no longer work in Contao 6. Use absolute paths for links and assets instead.

$GLOBALS['TL_LANGUAGE']

Using the global $GLOBALS['TL_LANGUAGE'] has been deprecated in Contao 4.0 and will no longer work in Contao 6. Use the locale from the request object instead:

$locale = System::getContainer()->get('request_stack')->getCurrentRequest()->getLocale();