I'm not sure if this is the best solution, but here's how I got guild data to update.
In updateProfile.php, line 135, I changed:
- Code: Select all
if( is_array($uploadData['myProfile']) && is_admin() )
to read as:
- Code: Select all
if( is_array($uploadData['myProfile']) )
Basically, this removes the check that ensures the user is an administrator. Probably the ideal solution would be to pass in an administrator authentication somehow from UniUploader, but I'm a Dragonfly/WoWRoster newbie, so I'm not sure how that would be accomplished.