Actions
Bug #88007
closedProxy class SaltedPasswordsService should be SaltedPasswordService
Start date:
2019-03-26
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The proxy class for the deprecated SaltedPasswordService
is pluraled to SaltedPasswordsService
and thus if used crashes to a fatal error instead of throwing a deprecation notice as intended.
This
namespace TYPO3\CMS\Saltedpasswords {
class SaltedPasswordsService extends \TYPO3\CMS\Core\Crypto\PasswordHashing\SaltedPasswordService
{
}
}
should be
namespace TYPO3\CMS\Saltedpasswords {
class SaltedPasswordService extends \TYPO3\CMS\Core\Crypto\PasswordHashing\SaltedPasswordService
{
}
}
Updated by Benni Mack over 5 years ago
to all contributors... please wait to fix this issue. I'll take this one as a helper for new contributors in the next few days to tackle that.
Updated by Gerrit Code Review over 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60505
Updated by Gerrit Code Review over 5 years ago
Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60515
Updated by Benni Mack over 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset f89b96ef6e48e54b2b8cb262dabf2baa07afbc40.
Actions