Breaking: #92989 - AbstractUserAuthentication->loginFailure removed
See forge#92989
Description
The public PHP property login
of the PHP class Abstract
has
been removed. This property stored information if a login attempt was made
but was not successful.
Impact
Accessing or setting the property from third-party code via PHP has no effect anymore.
Affected Installations
TYPO3 installations with custom code in PHP accessing or setting this property, which is highly unlikely as this property only had limited use and the existing hook is better suited for doing custom work.
Migration
If this information is needed, it is recommended to use the hook
$GLOBALS
which allows to run custom PHP code if a login attempt has been made which was
not successful.