diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-08-26 21:13:32 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-08-26 21:13:32 +0200 |
commit | 1b161b0ee4d16711dc6540b14f50f20b68a7b565 (patch) | |
tree | 2cf04261f9be0839055932a9a544e91ebce773e1 /Zotlabs/Daemon/Cron.php | |
parent | 5aaa8f44a284a9c6c69f0c4bb11d59cb3c048b36 (diff) | |
download | volse-hubzilla-1b161b0ee4d16711dc6540b14f50f20b68a7b565.tar.gz volse-hubzilla-1b161b0ee4d16711dc6540b14f50f20b68a7b565.tar.bz2 volse-hubzilla-1b161b0ee4d16711dc6540b14f50f20b68a7b565.zip |
move z6trans_connections() to cron from cron daily
Diffstat (limited to 'Zotlabs/Daemon/Cron.php')
-rw-r--r-- | Zotlabs/Daemon/Cron.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index 46f4e4071..703d6ce08 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -155,6 +155,11 @@ class Cron { } } + + // check if any connections transitioned to zot6 and upgrade the connections to zot6 at this hub if so. + require_once('include/connections.php'); + z6trans_connections(); + require_once('include/attach.php'); attach_upgrade(); |