diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-01 22:03:10 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-01 22:03:10 -0700 |
commit | 6cc60ba477c1634b2ba6d78495d35cbf306988e1 (patch) | |
tree | 5ffbc602bc3d6c3fe412f8b80aa69636e42cc1e3 /include/apps.php | |
parent | c5578d79643bbdde8f49baae2fa6890fc9bf9a53 (diff) | |
download | volse-hubzilla-6cc60ba477c1634b2ba6d78495d35cbf306988e1.tar.gz volse-hubzilla-6cc60ba477c1634b2ba6d78495d35cbf306988e1.tar.bz2 volse-hubzilla-6cc60ba477c1634b2ba6d78495d35cbf306988e1.zip |
initial work on obj import, rename import_profile_photo to import_xchan_photo to more accurately state its purpose.
Diffstat (limited to 'include/apps.php')
-rw-r--r-- | include/apps.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apps.php b/include/apps.php index 504641102..7943bc927 100644 --- a/include/apps.php +++ b/include/apps.php @@ -325,7 +325,7 @@ function app_store($arr) { return $ret; if($arr['photo'] && ! strstr($arr['photo'],z_root())) { - $x = import_profile_photo($arr['photo'],get_observer_hash(),true); + $x = import_xchan_photo($arr['photo'],get_observer_hash(),true); $arr['photo'] = $x[1]; } @@ -378,7 +378,7 @@ function app_update($arr) { return $ret; if($arr['photo'] && ! strstr($arr['photo'],z_root())) { - $x = import_profile_photo($arr['photo'],get_observer_hash(),true); + $x = import_xchan_photo($arr['photo'],get_observer_hash(),true); $arr['photo'] = $x[1]; } |