From 5b547ae991624924c0ef11dbe36ae57f5ec2182b Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 15 Aug 2012 23:15:29 -0700 Subject: registration dangling code fragment that should've been removed --- include/items.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'include/items.php') diff --git a/include/items.php b/include/items.php index 48f063ab7..bb053434d 100755 --- a/include/items.php +++ b/include/items.php @@ -428,30 +428,36 @@ function get_item_elements($j) { $arr['obj_type'] = (($j->objtype) ? htmlentities($j->objtype, ENT_COMPAT,'UTF-8') : ''); $arr['tgt_type'] = (($j->tgttype) ? htmlentities($j->tgttype, ENT_COMPAT,'UTF-8') : ''); - $arr['obj'] = $j->obj; - $arr['tgt'] = $j->tgt; + $arr['object'] = $j->object; + $arr['target'] = $j->target; $arr['attach'] = $j->attach; $arr['tags'] = $j->tags; - $arr['privacy'] = $j->privacy; + $arr['private'] = $j->private; $arr['flags'] = intval($j->flags); - $arr['types'] = intval($j->types); $arr['author'] = $j->author; - $arr['new'] = 1; + // needed still: owner and contact, map flags return $arr; } +function encode_item($item) { + return json_encode($item); + +} + + + function get_atom_elements($feed,$item) { -- cgit v1.2.3