debugging of file attachment api - somewhat functional but the attachment info structure in the item table needs to be re-done.

This commit is contained in:
friendica
2013-01-31 23:56:46 -08:00
parent 6b3d36c36d
commit 5ca88ca10a
6 changed files with 21 additions and 15 deletions

View File

@@ -496,7 +496,7 @@ function get_item_elements($x) {
$arr['object'] = activity_sanitise($x['object']);
$arr['target'] = activity_sanitise($x['target']);
$arr['attach'] = activity_sanitise($x['attach']);
$arr['attach'] = implode(',',activity_sanitise($x['attach']));
$arr['term'] = decode_tags($x['tags']);
$arr['item_private'] = ((array_key_exists('flags',$x) && is_array($x['flags']) && in_array('private',$x['flags'])) ? 1 : 0);
@@ -588,7 +588,7 @@ function encode_item($item) {
if($item['target'])
$x['target'] = json_decode($item['target'],true);
if($item['attach'])
$x['attach'] = json_decode($item['attach'],true);
$x['attach'] = explode(',', $item['attach']);
if($y = encode_item_flags($item))
$x['flags'] = $y;
if($item['term'])