diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-20 23:57:44 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-20 23:57:44 -0700 |
commit | 6e9e267b2750df331a4a9d6d5910714bec738ec0 (patch) | |
tree | f7f2b6096e8a51d393c3a7a31ed1fd18126b595b | |
parent | 2e9336beb5c3881b7f17cd4ffca29894344c779c (diff) | |
download | volse-hubzilla-6e9e267b2750df331a4a9d6d5910714bec738ec0.tar.gz volse-hubzilla-6e9e267b2750df331a4a9d6d5910714bec738ec0.tar.bz2 volse-hubzilla-6e9e267b2750df331a4a9d6d5910714bec738ec0.zip |
provide a space between link header params
-rw-r--r-- | Zotlabs/Web/HTTPSig.php | 2 | ||||
-rwxr-xr-x | boot.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php index 28a7b3b55..986e10d73 100644 --- a/Zotlabs/Web/HTTPSig.php +++ b/Zotlabs/Web/HTTPSig.php @@ -20,7 +20,7 @@ class HTTPSig { return $digest; } - // See draft-cavage-http-signatures-07 + // See draft-cavage-http-signatures-08 static function verify($data,$key = '') { @@ -1039,7 +1039,7 @@ class App { if($s) { $s .= ','; } - $s .= '<' . $y['url'] . '>;rel="' . $y['rel'] . '";type="' . $y['type'] . '"'; + $s .= '<' . $y['url'] . '>; rel="' . $y['rel'] . '"; type="' . $y['type'] . '"'; } } return $s; |