From 3c29b46c4266a62bbd0c61f8663911434fbb7989 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 1 Sep 2015 20:57:53 -0700 Subject: use different obj export output format for hubzilla compatibility --- include/identity.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include/identity.php') diff --git a/include/identity.php b/include/identity.php index 2535e1e1d..561a69cd5 100644 --- a/include/identity.php +++ b/include/identity.php @@ -555,7 +555,14 @@ function identity_basic_export($channel_id, $items = false) { if($r) $ret['term'] = $r; - $r = q("select * from obj where obj_channel = %d", + + // make the obj output match the hubzilla file format + + $datestamp = datetime_convert(); + + $r = q("select obj.*, term.term as obj_term, term.url as obj_url, term.imgurl as obj_imgurl, '%s' as obj_created, '%s' as obj_edited from obj left join term on obj_obj = term.term_hash where obj_channel = %d", + dbesc($datestamp), + dbesc($datestamp), intval($channel_id) ); -- cgit v1.2.3