Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 479 Bytes

DEPRECATED.md

File metadata and controls

15 lines (10 loc) · 479 Bytes

Deprecated features

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.0. Use the locale from the request object instead:

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