- 🇮🇳India arunkumark Coimbatore
💬 Deprecate this module and mark it obsolete Needs review Module functionality merged to the Commerce Core.
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.
Closed: outdated
1.0
Code
The patch will have to be re-rolled with new suggestions/changes described in the comments in the issue.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
💬 Deprecate this module and mark it obsolete Needs review Module functionality merged to the Commerce Core.