diff options
author | Mario <mario@mariovavti.com> | 2021-03-12 10:50:25 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-12 10:50:25 +0000 |
commit | 45ecd1b12729b4f6144d8357e39431e30ec458de (patch) | |
tree | 0fdbc8eb3758966773bd9eef9337b2402e6220e7 /include/channel.php | |
parent | 3f053611bdbbd4a26a5d9c76a294b7ada07f0726 (diff) | |
download | volse-hubzilla-45ecd1b12729b4f6144d8357e39431e30ec458de.tar.gz volse-hubzilla-45ecd1b12729b4f6144d8357e39431e30ec458de.tar.bz2 volse-hubzilla-45ecd1b12729b4f6144d8357e39431e30ec458de.zip |
revert default profile image
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'; } } |