aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-09-21 18:29:41 -0700
committerzotlabs <mike@macgirvin.com>2017-09-21 18:29:41 -0700
commit6bd35ef74006d4220640983e2aa72decd49f6379 (patch)
treeab2e4b2f3c78810c28f09bbead313f0c325c1682
parent234e9476fbd7fabaae3c891c9791c7c0e60b2d7a (diff)
downloadvolse-hubzilla-6bd35ef74006d4220640983e2aa72decd49f6379.tar.gz
volse-hubzilla-6bd35ef74006d4220640983e2aa72decd49f6379.tar.bz2
volse-hubzilla-6bd35ef74006d4220640983e2aa72decd49f6379.zip
log the lack of http sig info
-rw-r--r--Zotlabs/Web/HTTPSig.php4
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);