diff options
author | zotlabs <mike@macgirvin.com> | 2017-02-24 13:53:49 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-02-24 13:53:49 -0800 |
commit | 8d0d2015d76700a3defac8d767ce8a1c529d585b (patch) | |
tree | e1f1069a57a381cee667759b01a8318b12fc9296 /Zotlabs/Zot/Finger.php | |
parent | 732dfa63c783fe2e965d1051e0dea587b17aafa6 (diff) | |
download | volse-hubzilla-8d0d2015d76700a3defac8d767ce8a1c529d585b.tar.gz volse-hubzilla-8d0d2015d76700a3defac8d767ce8a1c529d585b.tar.bz2 volse-hubzilla-8d0d2015d76700a3defac8d767ce8a1c529d585b.zip |
We've passed the deadline for allowing unsigned zot finger tokens. It is now a protocol requirement.
Diffstat (limited to 'Zotlabs/Zot/Finger.php')
-rw-r--r-- | Zotlabs/Zot/Finger.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Zotlabs/Zot/Finger.php b/Zotlabs/Zot/Finger.php index 7e0f5fb7c..9871b5bbd 100644 --- a/Zotlabs/Zot/Finger.php +++ b/Zotlabs/Zot/Finger.php @@ -123,9 +123,7 @@ class Finger { } else { logger('No signed token from ' . $url . $rhs, LOGGER_NORMAL, LOG_WARNING); - // after 2017-01-01 this will be a hard error unless you over-ride it. - if((time() > 1483228800) && (! get_config('system', 'allow_unsigned_zotfinger'))) - return $ret; + return $ret; } } |