diff options
author | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
commit | bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6 (patch) | |
tree | 8929845be585b09d0f420621281c5531e1efad3e /util/dmkdir | |
parent | 6f93d9848c43019d43ea76c27d42d657ba031cd7 (diff) | |
parent | fdefa101d84dc2a9424eaedbdb003a4c30ec5d01 (diff) | |
download | volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.tar.gz volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.tar.bz2 volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.zip |
Merge branch '5.0RC'5.0
Diffstat (limited to 'util/dmkdir')
-rwxr-xr-x | util/dmkdir | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/dmkdir b/util/dmkdir index 72ab22431..b939bc901 100755 --- a/util/dmkdir +++ b/util/dmkdir @@ -1,6 +1,8 @@ #!/usr/bin/env php <?php +use Zotlabs\Lib\Libsync; + // file import to DAV utility if(!file_exists('include/cli_startup.php')) { @@ -52,6 +54,6 @@ if($argc != 2) { $sync = attach_export_data($channel,$hash); if($sync) { - build_sync_packet($channel['channel_id'],array('file' => array($sync))); + Libsync::build_sync_packet($channel['channel_id'],array('file' => array($sync))); } - }
\ No newline at end of file + } |