diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-14 17:40:50 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-14 17:40:50 -0700 |
commit | b33a9a71f6d13efb68d140ecbc41cc442564cde0 (patch) | |
tree | 42f68fd1b5df56bd7995f15898f71bc4e5df8128 /mod/import.php | |
parent | 8af3dc140e34094ce101f050feb3da2b8b39470b (diff) | |
download | volse-hubzilla-b33a9a71f6d13efb68d140ecbc41cc442564cde0.tar.gz volse-hubzilla-b33a9a71f6d13efb68d140ecbc41cc442564cde0.tar.bz2 volse-hubzilla-b33a9a71f6d13efb68d140ecbc41cc442564cde0.zip |
more work on import & sync of private mail and conversations
Diffstat (limited to 'mod/import.php')
-rw-r--r-- | mod/import.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/import.php b/mod/import.php index b6e36d734..72d8f92e9 100644 --- a/mod/import.php +++ b/mod/import.php @@ -441,6 +441,12 @@ function import_post(&$a) { if(is_array($data['chatroom'])) import_chatrooms($channel,$data['chatroom']); + if(is_array($data['conv'])) + import_conv($channel,$data['conv']); + + if(is_array($data['mail'])) + import_mail($channel,$data['mail']); + if(is_array($data['event'])) import_events($channel,$data['event']); |