aboutsummaryrefslogtreecommitdiffstats
path: root/util/dmkdir
diff options
context:
space:
mode:
Diffstat (limited to 'util/dmkdir')
-rwxr-xr-xutil/dmkdir6
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
+ }