aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorZot <mike@macgirvin.com>2021-02-24 08:35:29 +0000
committerMario <mario@mariovavti.com>2021-02-24 08:35:29 +0000
commitdf362e4f81430249af22f060ff4b11a58e9a0a59 (patch)
treea017074fa72b6c97da3af7ae9e469c3a064451ff /Zotlabs/Module
parent82ee98017212bffc040bcaa91c7d89432860edae (diff)
downloadvolse-hubzilla-df362e4f81430249af22f060ff4b11a58e9a0a59.tar.gz
volse-hubzilla-df362e4f81430249af22f060ff4b11a58e9a0a59.tar.bz2
volse-hubzilla-df362e4f81430249af22f060ff4b11a58e9a0a59.zip
export compatibility from hubzilla to zap
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Uexport.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/Zotlabs/Module/Uexport.php b/Zotlabs/Module/Uexport.php
index 3d1587b87..55c316317 100644
--- a/Zotlabs/Module/Uexport.php
+++ b/Zotlabs/Module/Uexport.php
@@ -17,6 +17,7 @@ class Uexport extends Controller {
if(argc() > 1) {
$sections = (($_REQUEST['sections']) ? explode(',',$_REQUEST['sections']) : '');
+ $zap_compat = (($_REQUEST['zap_compat']) ? intval($_REQUEST['zap_compat']) : false);
$channel = App::get_channel();
@@ -32,12 +33,12 @@ class Uexport extends Controller {
header('content-disposition: attachment; filename="' . $channel['channel_address'] . (($year) ? '-' . $year : '') . (($month) ? '-' . $month : '') . (($_REQUEST['sections']) ? '-' . $_REQUEST['sections'] : '') . '.json"' );
if($year) {
- echo json_encode(identity_export_year(local_channel(),$year,$month));
+ echo json_encode(identity_export_year(local_channel(),$year,$month, $zap_compat));
killme();
}
if(argc() > 1 && argv(1) === 'basic') {
- echo json_encode(identity_basic_export(local_channel(),$sections));
+ echo json_encode(identity_basic_export(local_channel(),$sections, $zap_compat));
killme();
}
@@ -46,7 +47,7 @@ class Uexport extends Controller {
if(argc() > 1 && argv(1) === 'complete') {
$sections = get_default_export_sections();
$sections[] = 'items';
- echo json_encode(identity_basic_export(local_channel(),$sections));
+ echo json_encode(identity_basic_export(local_channel(),$sections, $zap_compat));
killme();
}
}