diff options
author | friendica <info@friendica.com> | 2012-11-08 19:07:19 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-08 19:07:19 -0800 |
commit | 22841e15666a6678517cf7a1f8f8791dcd37e1a6 (patch) | |
tree | d67dcb866e78fdab995529615ff78396396c6ab1 /include/ItemObject.php | |
parent | f66a3d26befeb9966d9059164864c49d1f5a7721 (diff) | |
download | volse-hubzilla-22841e15666a6678517cf7a1f8f8791dcd37e1a6.tar.gz volse-hubzilla-22841e15666a6678517cf7a1f8f8791dcd37e1a6.tar.bz2 volse-hubzilla-22841e15666a6678517cf7a1f8f8791dcd37e1a6.zip |
start implementing zot-id
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index 89e8dd3bc..2147b00b9 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -135,7 +135,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_url']); + $profile_link = zid($item['author']['xchan_url']); $profile_name = $item['author']['xchan_name']; // if($item['author-link'] && (! $item['author-name'])) @@ -147,9 +147,9 @@ class Item extends BaseObject { if($sp) $sparkle = ' sparkle'; else - $profile_link = zrl($profile_link); + $profile_link = zid($profile_link); - $profile_link = zrl($item['author']['xchan_url']); + $profile_link = zid($item['author']['xchan_url']); // $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']); @@ -586,7 +586,7 @@ class Item extends BaseObject { // This will have been stored in $a->page_contact by our calling page. // Put this person as the wall owner of the wall-to-wall notice. - $this->owner_url = zrl($a->page_contact['url']); + $this->owner_url = zid($a->page_contact['url']); $this->owner_photo = $a->page_contact['thumb']; $this->owner_name = $a->page_contact['name']; $this->wall_to_wall = true; @@ -617,7 +617,7 @@ class Item extends BaseObject { $this->owner_url = $this->get_redirect_url(); } else - $this->owner_url = zrl($this->get_data_value('owner-link')); + $this->owner_url = zid($this->get_data_value('owner-link')); } } } |