diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-10 19:18:55 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-10 19:18:55 -0800 |
commit | f73c82632f213ac7971b54220b4a0c87d354ca1e (patch) | |
tree | 1f63d4b042c3dbf7bfe2c3e74f0a24ef2e5f94ec /Zotlabs | |
parent | 8389d8677d4e2deaaf5da028d9abacf7ce5ef250 (diff) | |
download | volse-hubzilla-f73c82632f213ac7971b54220b4a0c87d354ca1e.tar.gz volse-hubzilla-f73c82632f213ac7971b54220b4a0c87d354ca1e.tar.bz2 volse-hubzilla-f73c82632f213ac7971b54220b4a0c87d354ca1e.zip |
some minor cleanup - change the default of the discover tab (public stream access)
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Zot/Auth.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Zotlabs/Zot/Auth.php b/Zotlabs/Zot/Auth.php index 07879fbd9..fed253923 100644 --- a/Zotlabs/Zot/Auth.php +++ b/Zotlabs/Zot/Auth.php @@ -102,12 +102,8 @@ class Auth { function Verify($channel,$hubloc) { - logger('auth request received from ' . $hubloc['hubloc_addr'] ); - - // check credentials and access - // If they are already authenticated and haven't changed credentials, - // we can save an expensive network round trip and improve performance. + logger('auth request received from ' . $hubloc['hubloc_addr'] ); $this->remote = remote_channel(); $this->remote_service_class = ''; @@ -115,6 +111,11 @@ class Auth { $this->remote_hub = $hubloc['hubloc_url']; $this->dnt = 0; + // check credentials and access + + // If they are already authenticated and haven't changed credentials, + // we can save an expensive network round trip and improve performance. + // Also check that they are coming from the same site as they authenticated with originally. $already_authed = (((remote_channel()) && ($hubloc['hubloc_hash'] == remote_channel()) |