diff options
author | M. Dent <dentm42@gmail.com> | 2019-01-26 00:21:09 +0100 |
---|---|---|
committer | M. Dent <dentm42@gmail.com> | 2019-01-26 00:21:09 +0100 |
commit | 793d78fba649bda486a358e5e3ec45873805d9d7 (patch) | |
tree | 07cc0e3766fd6966745ef4dca24319cf7a031006 | |
parent | 5ad055efb40651bda6e85de533c00a1186df4e03 (diff) | |
parent | 10587e3a842d7870c94bd52c23dedc5abc114bdc (diff) | |
download | volse-hubzilla-793d78fba649bda486a358e5e3ec45873805d9d7.tar.gz volse-hubzilla-793d78fba649bda486a358e5e3ec45873805d9d7.tar.bz2 volse-hubzilla-793d78fba649bda486a358e5e3ec45873805d9d7.zip |
Merge branch 'core_fixes' into 'dev'
return false if http signatue is not valid
See merge request hubzilla/core!1489
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 167e2d67d..1440a9691 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -308,8 +308,7 @@ class Libzot { if(! $hsig_valid) { logger('http signature not valid: ' . print_r($hsig,true)); - /// @FIXME $result is undefined - return $result; + return false; } |