MyBB Community Forums

Full Version: Find all threads - Maybe a bug...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I searched something on forum and after some time i was on KevinVR's profile and i clicked on "Find all threads", this is what i get:

[Image: ANMeF9O.png]

As you can see last his thread doesen't have any reply, and the last poster is "shadows123". I clicked on that user and that's Kevin's profile. (i guess he changed his username from shadows123 to KevinVR) but point is, why that is happening? It should be his current username on last poster right? Smile

I have searched for something like this on forum but i didn't found anything... Tell me if wrong Smile
It most likely didn't change the username field in the posts table. Not sure if intended or a bug.
See: http://community.mybb.com/thread-131755.html

MyBB doesn't update the last user user-name for threads and forums upon modifying user-names, or merging users. It just changes the UID which is necessary to build the right profile link.

See ./admin/modules/user/users.php #1901 and #577

Though on updating user should probably be handled in the datahandler file.
Feel free to fill a bug report here if none already exists.
(2013-01-25, 10:23 PM)Omar G. Wrote: [ -> ]See: http://community.mybb.com/thread-131755.html

MyBB doesn't update the last user user-name for threads and forums upon modifying user-names, or merging users. It just changes the UID which is necessary to build the right profile link.

See ./admin/modules/user/users.php #1901 and #577

Though on updating user should probably be handled in the datahandler file.

You are right. I will take a look for a bug, and report it if none exists Smile Thank you Omar and Pirata.