diff options
author | friendica <info@friendica.com> | 2013-12-19 16:33:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-19 16:33:36 -0800 |
commit | 7c81889b3397f09dfba4f17bba99f6d1dad9d0b2 (patch) | |
tree | 9f8b091fcc204f8bbb5036ffbc1eca82c51f07d3 /mod/photo.php | |
parent | f8042cc4677227aca8999c875c4f6d4c7acef96c (diff) | |
download | volse-hubzilla-7c81889b3397f09dfba4f17bba99f6d1dad9d0b2.tar.gz volse-hubzilla-7c81889b3397f09dfba4f17bba99f6d1dad9d0b2.tar.bz2 volse-hubzilla-7c81889b3397f09dfba4f17bba99f6d1dad9d0b2.zip |
make default profile photo configurable - should be functional but needs admin ui
Diffstat (limited to 'mod/photo.php')
-rw-r--r-- | mod/photo.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mod/photo.php b/mod/photo.php index 591d7198a..6f047bea1 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -24,7 +24,7 @@ function photo_init(&$a) { $observer_xchan = get_observer_hash(); - $default = 'images/default_profile_photos/rainbow_man/175.jpg'; + $default = get_default_profile_photo(); if(isset($type)) { @@ -38,11 +38,11 @@ function photo_init(&$a) { case 'm': $resolution = 5; - $default = 'images/default_profile_photos/rainbow_man/80.jpg'; + $default = get_default_profile_photo(80); break; case 's': $resolution = 6; - $default = 'images/default_profile_photos/rainbow_man/48.jpg'; + $default = get_default_profile_photo(48); break; case 'l': default: @@ -135,15 +135,15 @@ function photo_init(&$a) { switch($resolution) { case 4: - $data = file_get_contents('images/default_profile_photos/rainbow_man/175.jpg'); + $data = file_get_contents(get_default_profile_photo()); $mimetype = 'image/jpeg'; break; case 5: - $data = file_get_contents('images/default_profile_photos/rainbow_man/80.jpg'); + $data = file_get_contents(get_default_profile_photo(80)); $mimetype = 'image/jpeg'; break; case 6: - $data = file_get_contents('images/default_profile_photos/rainbow_man/48.jpg'); + $data = file_get_contents(get_default_profile_photo(48)); $mimetype = 'image/jpeg'; break; default: |