diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/channel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/channel.php b/include/channel.php index 2d79cd074..f2e7a703c 100644 --- a/include/channel.php +++ b/include/channel.php @@ -2021,7 +2021,7 @@ function get_theme_uid() { function get_default_profile_photo($size = 300) { $scheme = get_config('system','default_profile_photo'); if(! $scheme) - $scheme = 'rainbow_man'; + $scheme = 'human_confusion'; if(! is_dir('images/default_profile_photos/' . $scheme)) { $x = [ 'scheme' => $scheme, 'size' => $size, 'url' => '' ]; @@ -2030,7 +2030,7 @@ function get_default_profile_photo($size = 300) { return $x['url']; } else { - $scheme = 'rainbow_man'; + $scheme = 'human_confusion'; } } |