In the password-request form the username is case sensitive. This is different from the standard Drupal behaviour.

CommentFileSizeAuthor
#1 sharedmailpass-1413850-1.patch1.23 KBclemens.tolboom

Comments

clemens.tolboom’s picture

StatusFileSize
new1.23 KB

Attached patch fixes the named issue.

Change line from

    if ($account->name == $name) {

into

    if (strtolower($account->name) == strtolower($name)) {

.

baikho’s picture

Issue summary: View changes
Status: Active » Needs review
baikho’s picture

Status: Needs review » Closed (outdated)