diff options
author | friendica <info@friendica.com> | 2012-09-25 17:57:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-09-25 17:57:20 -0700 |
commit | fbafd92f7f7b96b215b98f30de9a1ccbdb3479be (patch) | |
tree | f1f6739d513ac297fbd14162b8377cc4cf84c784 /mod/profile_photo.php | |
parent | dd5725c2725b742473ce285dce8573da37fb8053 (diff) | |
download | volse-hubzilla-fbafd92f7f7b96b215b98f30de9a1ccbdb3479be.tar.gz volse-hubzilla-fbafd92f7f7b96b215b98f30de9a1ccbdb3479be.tar.bz2 volse-hubzilla-fbafd92f7f7b96b215b98f30de9a1ccbdb3479be.zip |
moving a lot of structure around. 'entity' is now 'channel'
Diffstat (limited to 'mod/profile_photo.php')
-rw-r--r-- | mod/profile_photo.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 445045cb9..3bde6a99d 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -8,7 +8,8 @@ function profile_photo_init(&$a) { return; } - profile_load($a,$a->identity['entity_address']); + $channel = $a->get_channel(); + profile_load($a,$channel['channel_address']); } |