diff options
author | Mario <mario@mariovavti.com> | 2020-04-01 07:44:07 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-01 07:44:07 +0000 |
commit | ffe429be65e8d6198579d3dd987053387799ca78 (patch) | |
tree | 1c88542037942394beea6bb6a15db7cab80941cc /Zotlabs/Update | |
parent | b739f91caa1522522a4ce093d7c63f0f4c777085 (diff) | |
download | volse-hubzilla-ffe429be65e8d6198579d3dd987053387799ca78.tar.gz volse-hubzilla-ffe429be65e8d6198579d3dd987053387799ca78.tar.bz2 volse-hubzilla-ffe429be65e8d6198579d3dd987053387799ca78.zip |
transition connections to zot6 if their site has been updated
Diffstat (limited to 'Zotlabs/Update')
-rw-r--r-- | Zotlabs/Update/_1236.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Zotlabs/Update/_1236.php b/Zotlabs/Update/_1236.php index d40cc9e25..6b4e7b299 100644 --- a/Zotlabs/Update/_1236.php +++ b/Zotlabs/Update/_1236.php @@ -105,10 +105,12 @@ class _1236 { } - if(count($r) == $i) + if(count($r) == $i) { + z6trans_connections(); return UPDATE_SUCCESS; - else - return UPDATE_FAILED; + } + + return UPDATE_FAILED; } |