aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Photo.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-05-15 10:20:20 +0200
committerMario Vavti <mario@mariovavti.com>2018-05-15 10:20:20 +0200
commitde63e40a704761c2efd1e04e1313a37c43fef20e (patch)
tree6ffc31006467c3c0d868ea55db919fb17fdd4278 /Zotlabs/Module/Photo.php
parent803e85caeb959c730fcb69135aa2ccd55bea751b (diff)
downloadvolse-hubzilla-de63e40a704761c2efd1e04e1313a37c43fef20e.tar.gz
volse-hubzilla-de63e40a704761c2efd1e04e1313a37c43fef20e.tar.bz2
volse-hubzilla-de63e40a704761c2efd1e04e1313a37c43fef20e.zip
we must now provide the full path to the profile image for the cavatar plugin to work
Diffstat (limited to 'Zotlabs/Module/Photo.php')
-rw-r--r--Zotlabs/Module/Photo.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php
index 9cafc8d07..ccc59ed09 100644
--- a/Zotlabs/Module/Photo.php
+++ b/Zotlabs/Module/Photo.php
@@ -31,7 +31,7 @@ class Photo extends \Zotlabs\Web\Controller {
$observer_xchan = get_observer_hash();
- $default = get_default_profile_photo();
+ $default = z_root() . '/' . get_default_profile_photo();
if(isset($type)) {
@@ -45,11 +45,11 @@ class Photo extends \Zotlabs\Web\Controller {
case 'm':
$resolution = 5;
- $default = get_default_profile_photo(80);
+ $default = z_root() . '/' . get_default_profile_photo(80);
break;
case 's':
$resolution = 6;
- $default = get_default_profile_photo(48);
+ $default = z_root() . '/' . get_default_profile_photo(48);
break;
case 'l':
default:
@@ -183,15 +183,15 @@ class Photo extends \Zotlabs\Web\Controller {
switch($resolution) {
case 4:
- $data = file_get_contents(get_default_profile_photo());
+ $data = file_get_contents(z_root() . '/' . get_default_profile_photo());
$mimetype = 'image/png';
break;
case 5:
- $data = file_get_contents(get_default_profile_photo(80));
+ $data = file_get_contents(z_root() . '/' . get_default_profile_photo(80));
$mimetype = 'image/png';
break;
case 6:
- $data = file_get_contents(get_default_profile_photo(48));
+ $data = file_get_contents(z_root() . '/' . get_default_profile_photo(48));
$mimetype = 'image/png';
break;
default: