Current username exits error

Created on 9 November 2018, over 6 years ago
Updated 23 April 2024, 12 months ago

Hi,
After downloading this module using composer, I found the module would throw an error if the username already existed. The error occurs on $userObj->save(); because the user entity can't add the new username to the database as it already exists.

The reason for this I believe is uid <> :uid as it always returns a false from the database query,
$database->queryRange("SELECT uid from {users_field_data} WHERE uid <> :uid AND name = :name", 0, 1, [':uid' => $uid, ':name' => $new_name])->fetchAssoc();

I believe the following query would should be changed to,
$found = $database->queryRange("SELECT uid from {users_field_data} WHERE name = :name", 0, 1, [':name' => $new_name])->fetchAssoc();

I have attached a patch that changes the query. Also, I separated your code out into different methods as it helped me understand what the code was doing.

🐛 Bug report
Status

Closed: outdated

Version

1.0

Component

Code

Created by

🇦🇺Australia purencool

Live updates comments and jobs are added and updated live.
  • Needs reroll

    The patch will have to be re-rolled with new suggestions/changes described in the comments in the issue.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024