aboutsummaryrefslogtreecommitdiffstats
path: root/include/channel.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-03-12 10:50:25 +0000
committerMario <mario@mariovavti.com>2021-03-12 10:50:25 +0000
commit45ecd1b12729b4f6144d8357e39431e30ec458de (patch)
tree0fdbc8eb3758966773bd9eef9337b2402e6220e7 /include/channel.php
parent3f053611bdbbd4a26a5d9c76a294b7ada07f0726 (diff)
downloadvolse-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.php4
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';
}
}