diff options
author | zotlabs <mike@macgirvin.com> | 2019-04-24 16:21:59 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-04-24 16:21:59 -0700 |
commit | c88286556a29974ea6955a6fb683a0ff35705ea5 (patch) | |
tree | f269edece634d13bb567db01ccbfb970fa4903f4 /Zotlabs/Lib | |
parent | 831b9d443330cb806871ab06aaa977adafbe661e (diff) | |
download | volse-hubzilla-c88286556a29974ea6955a6fb683a0ff35705ea5.tar.gz volse-hubzilla-c88286556a29974ea6955a6fb683a0ff35705ea5.tar.bz2 volse-hubzilla-c88286556a29974ea6955a6fb683a0ff35705ea5.zip |
hubloc confusion during magic auth where hublocs with more than one network may exist
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 70602bbbc..9bf987027 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -3107,7 +3107,11 @@ class Libzot { foreach($arr as $v) { if($v[$check] === 'zot6') { - + return $v; + } + } + foreach($arr as $v) { + if($v[$check] === 'zot') { return $v; } } |