diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-04-12 13:35:41 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-04-12 13:35:41 +0200 |
commit | 0d3b389538fe25a2cb6cc15fe5a44dd244ee6428 (patch) | |
tree | 28a1eab36cdab85e5cbb2e9fa934db727d66c938 | |
parent | 9f7dbe16fd29fed557aecdf8150d0ba244f3f36a (diff) | |
download | volse-hubzilla-0d3b389538fe25a2cb6cc15fe5a44dd244ee6428.tar.gz volse-hubzilla-0d3b389538fe25a2cb6cc15fe5a44dd244ee6428.tar.bz2 volse-hubzilla-0d3b389538fe25a2cb6cc15fe5a44dd244ee6428.zip |
fix php warning
-rw-r--r-- | Zotlabs/Lib/Libsync.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index 56bb411c4..84117abb0 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -771,7 +771,12 @@ class Libsync { static function sync_locations($sender, $arr) { - $ret = []; + $ret = [ + 'change_message' => '', + 'changed' => false, + 'message' => '' + ]; + $what = ''; $changed = false; |