diff options
author | friendica <info@friendica.com> | 2012-10-29 19:31:38 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-29 19:31:38 -0700 |
commit | 1a6415807ebf9ae859134c99eb64a90d7363747a (patch) | |
tree | 2f53cb0168079c9f195979474eed950ad7c38734 /include/ItemObject.php | |
parent | e36ca7b41f58cf0a478f222548d419e254a201be (diff) | |
download | volse-hubzilla-1a6415807ebf9ae859134c99eb64a90d7363747a.tar.gz volse-hubzilla-1a6415807ebf9ae859134c99eb64a90d7363747a.tar.bz2 volse-hubzilla-1a6415807ebf9ae859134c99eb64a90d7363747a.zip |
more structural stuff
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index b09cd470e..84f45054f 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -123,7 +123,7 @@ class Item extends BaseObject { $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); $profile_avatar = $item['author']['xchan_photo_m']; - $profile_link = zrl($item['author']['xchan_profile']); + $profile_link = zrl($item['author']['xchan_url']); $profile_name = $item['author']['xchan_name']; // if($item['author-link'] && (! $item['author-name'])) @@ -137,7 +137,7 @@ class Item extends BaseObject { else $profile_link = zrl($profile_link); - $profile_link = zrl($item['author']['xchan_profile']); + $profile_link = zrl($item['author']['xchan_url']); // $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']); @@ -520,7 +520,7 @@ class Item extends BaseObject { '$parent' => $this->get_id(), '$qcomment' => $qcomment, '$profile_uid' => $conv->get_profile_owner(), - '$mylink' => $this->observer['xchan_profile'], + '$mylink' => $this->observer['xchan_url'], '$mytitle' => t('This is you'), '$myphoto' => $this->observer['xchan_photo_s'], '$comment' => t('Comment'), |