diff options
author | friendica <info@friendica.com> | 2013-12-09 14:05:52 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 14:05:52 -0800 |
commit | 75ebf06131e935795b7072acc012c9e37669eade (patch) | |
tree | eeda74b3434fc593eff6dc4600bfd8924915021c /include/photo | |
parent | 31efbe2f466a323609f9ed8d38bb5fb6223e406b (diff) | |
download | volse-hubzilla-75ebf06131e935795b7072acc012c9e37669eade.tar.gz volse-hubzilla-75ebf06131e935795b7072acc012c9e37669eade.tar.bz2 volse-hubzilla-75ebf06131e935795b7072acc012c9e37669eade.zip |
some work on modularising the default profile photo so we can make them site selectable. Also red != friendica so we don't need all these friendica logos taking up space
Diffstat (limited to 'include/photo')
-rw-r--r-- | include/photo/photo_driver.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index ba95266f9..8730b4298 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -576,9 +576,9 @@ function import_profile_photo($photo,$xchan) { $photo_failure = true; } if($photo_failure) { - $photo = $a->get_baseurl() . '/images/person-175.jpg'; - $thumb = $a->get_baseurl() . '/images/person-80.jpg'; - $micro = $a->get_baseurl() . '/images/person-48.jpg'; + $photo = $a->get_baseurl() . '/images/default_profile_photos/rainbow_man/175.jpg'; + $thumb = $a->get_baseurl() . '/images/default_profile_photos/rainbow_man/80.jpg'; + $micro = $a->get_baseurl() . '/images/default_profile_photos/rainbow_man/48.jpg'; $type = 'image/jpeg'; } |