MyBB Community Forums

Full Version: Removing Users Username Changes
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the image below you will see the 1000 username changes. Well i am wondering how i would completely reset the username changes ( history ) for that specific user.

[Image: 06a57713a3ab2a9e32fbc17fd90d541e.png?1355495769]

Any help would be greatly appreciated. Big Grin
You could use Phpmyadmin or whatever MySql management tool you use to easily do this. You can also run MySQL queries directly from the MyBB admin using this plugin (I don't use this myself, though).

Sadly, I'm not exactly sure of the specific names and table for username changes.. since I'm pretty sure you're using this plugin.

Run something like this in a phpmyadmin query:
UPDATE `mybb_users` SET `username_changes` = '0' WHERE `uid` = 'x' 

Replace mybb_users with the right table if that's not right, and change username_changes as appropriate. Replace x with the ID of the user you want to reset.

Hope this helps!