diff options
author | Hilmar R <u02@u29lx193> | 2021-02-26 15:10:24 +0100 |
---|---|---|
committer | Hilmar R <u02@u29lx193> | 2021-02-26 15:10:24 +0100 |
commit | ea3390d626f85b7293a750958bfd1b5460958365 (patch) | |
tree | 59411827b5704735298d1e9e93b1dabc6fd7d12d /Zotlabs/Lib | |
parent | a04ded9cca5d6cf381ae73e18f62b42ec174a5c4 (diff) | |
download | volse-hubzilla-ea3390d626f85b7293a750958bfd1b5460958365.tar.gz volse-hubzilla-ea3390d626f85b7293a750958bfd1b5460958365.tar.bz2 volse-hubzilla-ea3390d626f85b7293a750958bfd1b5460958365.zip |
adjust air.5 to be in sync with 5.2.2
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 4291ce518..4bfd8c3fd 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -3143,6 +3143,11 @@ class Libzot { ); } + // this site obviously isn't dead because they are trying to communicate with us. + q("update site set site_dead = 0 where site_dead = 1 and site_url = '%s' ", + dbesc($hub['hubloc_url']) + ); + return $hub['hubloc_url']; } |