diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-21 18:29:41 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-21 18:29:41 -0700 |
commit | 6bd35ef74006d4220640983e2aa72decd49f6379 (patch) | |
tree | ab2e4b2f3c78810c28f09bbead313f0c325c1682 /Zotlabs/Web/HTTPSig.php | |
parent | 234e9476fbd7fabaae3c891c9791c7c0e60b2d7a (diff) | |
download | volse-hubzilla-6bd35ef74006d4220640983e2aa72decd49f6379.tar.gz volse-hubzilla-6bd35ef74006d4220640983e2aa72decd49f6379.tar.bz2 volse-hubzilla-6bd35ef74006d4220640983e2aa72decd49f6379.zip |
log the lack of http sig info
Diffstat (limited to 'Zotlabs/Web/HTTPSig.php')
-rw-r--r-- | Zotlabs/Web/HTTPSig.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php index 986e10d73..8062764fb 100644 --- a/Zotlabs/Web/HTTPSig.php +++ b/Zotlabs/Web/HTTPSig.php @@ -67,8 +67,10 @@ class HTTPSig { $sig_block = self::parse_sigheader($headers['authorization']); } - if(! $sig_block) + if(! $sig_block) { + logger('no signature provided.'); return $result; + } logger('sig_block: ' . print_r($sig_block,true), LOGGER_DATA); |