Skip to content

Commit

Permalink
Update users.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Eldenroot authored Mar 22, 2024
1 parent ce6f610 commit eb3be68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/modules/user/users.php
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@
}
}
// Are we setting a new avatar from a URL?
else if(isset($mybb->input['avatar_url']) && $mybb->input['avatar_url'] != $user['avatar'])
else if(!empty($mybb->input['avatar_url']) && $mybb->input['avatar_url'] != $user['avatar'])
{
if(!$mybb->settings['allowremoteavatars'])
{
Expand Down

0 comments on commit eb3be68

Please sign in to comment.