aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Uexport.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-02-24 08:35:30 +0000
committerMario <mario@mariovavti.com>2021-02-24 08:35:30 +0000
commit66e4bc327fc0dfdb0fd139455941cb15004e8df1 (patch)
treea017074fa72b6c97da3af7ae9e469c3a064451ff /Zotlabs/Module/Uexport.php
parent82ee98017212bffc040bcaa91c7d89432860edae (diff)
parentdf362e4f81430249af22f060ff4b11a58e9a0a59 (diff)
downloadvolse-hubzilla-66e4bc327fc0dfdb0fd139455941cb15004e8df1.tar.gz
volse-hubzilla-66e4bc327fc0dfdb0fd139455941cb15004e8df1.tar.bz2
volse-hubzilla-66e4bc327fc0dfdb0fd139455941cb15004e8df1.zip
Merge branch 'dev' into 'dev'
export compatibility from hubzilla to zap See merge request hubzilla/core!1910
Diffstat (limited to 'Zotlabs/Module/Uexport.php')
-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();
}
}