diff options
author | Mario <mario@mariovavti.com> | 2020-11-23 21:26:52 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-23 21:26:52 +0000 |
commit | f43577ec278b5036db7e96eee580c959f7c00c47 (patch) | |
tree | 35b49e90e2464eab759f6724513cb7f001d6d5f6 /Zotlabs/Web/HTTPSig.php | |
parent | c648c38fb08c4f7aa9eee133d7f5f3efd32f9bd9 (diff) | |
download | volse-hubzilla-f43577ec278b5036db7e96eee580c959f7c00c47.tar.gz volse-hubzilla-f43577ec278b5036db7e96eee580c959f7c00c47.tar.bz2 volse-hubzilla-f43577ec278b5036db7e96eee580c959f7c00c47.zip |
add logging
Diffstat (limited to 'Zotlabs/Web/HTTPSig.php')
-rw-r--r-- | Zotlabs/Web/HTTPSig.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php index 42426afb1..792556a10 100644 --- a/Zotlabs/Web/HTTPSig.php +++ b/Zotlabs/Web/HTTPSig.php @@ -212,6 +212,9 @@ class HTTPSig { static function get_key($key,$keytype,$id) { + if(is_array($key)) + btlogger('key is array: ' . print_r($key,true)); + if($key) { if(function_exists($key)) { return $key($id); |