provide a space between link header params

This commit is contained in:
zotlabs 2017-09-20 23:57:44 -07:00
parent 2e9336beb5
commit 6e9e267b27
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ class HTTPSig {
return $digest; return $digest;
} }
// See draft-cavage-http-signatures-07 // See draft-cavage-http-signatures-08
static function verify($data,$key = '') { static function verify($data,$key = '') {

View File

@ -1039,7 +1039,7 @@ class App {
if($s) { if($s) {
$s .= ','; $s .= ',';
} }
$s .= '<' . $y['url'] . '>;rel="' . $y['rel'] . '";type="' . $y['type'] . '"'; $s .= '<' . $y['url'] . '>; rel="' . $y['rel'] . '"; type="' . $y['type'] . '"';
} }
} }
return $s; return $s;