mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #10562 from creative-commoners/pulls/4/depr-random
API Deprecate Member::create_new_password()
This commit is contained in:
commit
001e9c75d7
@ -828,9 +828,12 @@ class Member extends DataObject
|
||||
* filesystem.
|
||||
*
|
||||
* @return string Returns a random password.
|
||||
*
|
||||
* @deprecated 4.12.0 Will be removed without equivalent functionality to replace it
|
||||
*/
|
||||
public static function create_new_password()
|
||||
{
|
||||
Deprecation::notice('4.12.0', 'Will be removed without equivalent functionality to replace it');
|
||||
$words = Security::config()->uninherited('word_list');
|
||||
|
||||
if ($words && file_exists($words ?? '')) {
|
||||
|
@ -88,6 +88,8 @@ class Security extends Controller implements TemplateGlobalProvider
|
||||
*
|
||||
* @config
|
||||
* @var string
|
||||
*
|
||||
* @deprecated 4.12 Will be removed without equivalent functionality to replace it
|
||||
*/
|
||||
private static $word_list = './wordlist.txt';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user