match the redmatrix output format for objects (which is the hubzilla table format)

This commit is contained in:
redmatrix 2015-09-01 21:08:02 -07:00
parent 95cf1aafa0
commit c5578d7964

View File

@ -556,13 +556,9 @@ function identity_basic_export($channel_id, $items = false) {
$ret['term'] = $r; $ret['term'] = $r;
// make the obj output match the hubzilla file format // add psuedo-column obj_baseurl to aid in relocations
$datestamp = datetime_convert(); $r = q("select obj.*, '%s' as obj_baseurl from obj where obj_channel = %d",
$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, '%s' as obj_baseurl from obj left join term on obj_obj = term.term_hash where obj_channel = %d",
dbesc($datestamp),
dbesc($datestamp),
dbesc(z_root()), dbesc(z_root()),
intval($channel_id) intval($channel_id)
); );