diff options
Diffstat (limited to 'include/channel.php')
-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 3dd8f884e..ecb7c24f7 100644 --- a/include/channel.php +++ b/include/channel.php @@ -2046,7 +2046,7 @@ function get_theme_uid() { function get_default_profile_photo($size = 300) { $scheme = get_config('system','default_profile_photo'); if(! $scheme) - $scheme = 'human_confusion'; + $scheme = 'rainbow_man'; if(! is_dir('images/default_profile_photos/' . $scheme)) { $x = [ 'scheme' => $scheme, 'size' => $size, 'url' => '' ]; @@ -2055,7 +2055,7 @@ function get_default_profile_photo($size = 300) { return $x['url']; } else { - $scheme = 'human_confusion'; + $scheme = 'rainbow_man'; } } |