diff options
author | friendica <info@friendica.com> | 2014-01-16 01:19:58 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-16 01:19:58 -0800 |
commit | 18a40d0c376c07a5686b1f023f53852911138a24 (patch) | |
tree | 18837f441a32c4b99d307bfc1afa9bc0736ba1c3 /include | |
parent | ec6b8e5cdaed1304c8740cbbd01153f4d9012568 (diff) | |
download | volse-hubzilla-18a40d0c376c07a5686b1f023f53852911138a24.tar.gz volse-hubzilla-18a40d0c376c07a5686b1f023f53852911138a24.tar.bz2 volse-hubzilla-18a40d0c376c07a5686b1f023f53852911138a24.zip |
prevent zid's from reaching the DAV core code.
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php index 30b6e4b6b..40a38808b 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1019,7 +1019,7 @@ function zid_init(&$a) { call_hooks('zid_init',$arr); if((! local_user()) && (! remote_user())) { logger('zid_init: not authenticated. Invoking reverse magic-auth for ' . $tmp_str); - $r = q("select * from hubloc where hubloc_addr = '%s' order by hubloc_id desc limit 1", + $r = q("select * from hubloc where hubloc_addr = '%s' order by hubloc_connected desc limit 1", dbesc($tmp_str) ); // try to avoid recursion - but send them home to do a proper magic auth |