diff options
author | redmatrix <git@macgirvin.com> | 2016-07-28 13:15:10 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-28 13:15:10 -0700 |
commit | 35f17acb388f68745068d6a60e12c7b777b92282 (patch) | |
tree | c27819dec82394a68699d8f4de1a5625b5f1c571 /include/conversation.php | |
parent | 58cf5f310d89026fb526e201c301075725044e48 (diff) | |
parent | 47e1c4e059303167b173a10b986086d3c00c8384 (diff) | |
download | volse-hubzilla-35f17acb388f68745068d6a60e12c7b777b92282.tar.gz volse-hubzilla-35f17acb388f68745068d6a60e12c7b777b92282.tar.bz2 volse-hubzilla-35f17acb388f68745068d6a60e12c7b777b92282.zip |
Merge branch '1.10RC' of https://github.com/redmatrix/hubzilla into 1.10RC_merge
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/conversation.php b/include/conversation.php index 957dbf8e9..1efca37f3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -99,7 +99,7 @@ function localize_item(&$item){ if(intval($item['item_thread_top'])) return; - $obj = json_decode_plus($item['obj']); + $obj = json_decode($item['obj'],true); if((! $obj) && ($item['obj'])) { logger('localize_item: failed to decode object: ' . print_r($item['obj'],true)); } @@ -186,7 +186,7 @@ function localize_item(&$item){ $Alink = $item['author']['xchan_url']; - $obj= json_decode_plus($item['obj']); + $obj= json_decode($item['obj'],true); $Blink = $Bphoto = ''; @@ -219,7 +219,7 @@ function localize_item(&$item){ $Aname = $item['author']['xchan_name']; $Alink = $item['author']['xchan_url']; - $obj= json_decode_plus($item['obj']); + $obj= json_decode($item['obj'],true); $Blink = $Bphoto = ''; |