mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-11 22:07:29 -08:00
Reverse the order for default gravatar
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
1ca3dc26eb
commit
00f7cb9dbb
|
@ -445,6 +445,10 @@ class UserPresenter extends Presenter
|
||||||
return Storage::disk('public')->url('avatars/'.e($this->avatar));
|
return Storage::disk('public')->url('avatars/'.e($this->avatar));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If there is a default avatar
|
||||||
|
if (Setting::getSettings()->default_avatar!= '') {
|
||||||
|
return Storage::disk('public')->url('avatars/'.e(Setting::getSettings()->default_avatar));
|
||||||
|
}
|
||||||
|
|
||||||
// Fall back to Gravatar if the settings allow loading remote scripts
|
// Fall back to Gravatar if the settings allow loading remote scripts
|
||||||
if (Setting::getSettings()->load_remote == '1') {
|
if (Setting::getSettings()->load_remote == '1') {
|
||||||
|
@ -460,10 +464,7 @@ class UserPresenter extends Presenter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there is a default avatar
|
|
||||||
if (Setting::getSettings()->default_avatar!= '') {
|
|
||||||
return Storage::disk('public')->url('avatars/'.e(Setting::getSettings()->default_avatar));
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue