diff --git a/core/modules/user/user.module b/core/modules/user/user.module index bc6156c9e3..574661a259 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -428,11 +428,12 @@ function user_validate_picture(&$form, &$form_state) { * Generate a random alphanumeric password. */ function user_password($length = 10) { + // cSpell:ignore abcdefghijkmnopqrstuvwxyz, ABCDEFGHJKLMNPQRSTUVWXYZ, 23456789 + // This variable contains the list of allowable characters for the // password. Note that the number 0 and the letter 'O' have been // removed to avoid confusion between the two. The same is true // of 'I', 1, and 'l'. - // cSpell:ignore abcdefghijkmnopqrstuvwxyz $allowable_characters = 'abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789'; // Zero-based count of characters in the allowable list: