|
Yes its a complicated issue there. It would only affect UBBThreads or fusion users since of the loginname username issue and only affects admins
I think the easiest fix here would be line 377 of uploadphoto.php
if ( isset($upuser) && !empty($upuser) ) {
change to this
if ( isset($upuser) && !empty($upuser) && $upuser != $User['username'] ) {
|