MyBB Community Forums

Full Version: [F] Moderator-CP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I deleted the avatar of another user in the Mod-CP. His avatar was deleted but my avatar was deleted too.
My Profile: http://forum.mybboard.de/user-172.html

I think you should replace:
			remove_avatars($mybb->user['uid']);
with:
			remove_avatars($user['uid']);
Yes, you are right! Smile

Here is my fix.

Index: modcp.php
===================================================================
--- modcp.php	(revision 24)
+++ modcp.php	(working copy)
@@ -1506,7 +1506,7 @@
 				"avatardimensions" => "",
 				"avatartype" => ""
 			);
-			remove_avatars($mybb->user['uid']);
+			remove_avatars($mybb->input['uid']);
 		}
 
 		$user_info = $userhandler->update_user();
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.