Woops, undefined $type there.

This commit is contained in:
Mikael Nordfeldth 2016-02-28 20:50:45 +01:00
parent d1b294e1ac
commit da34491c59
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class ShowstreamAction extends NoticestreamAction
// Publish all the rel="me" in the HTTP headers on our main profile page
if (get_class($this) == 'ShowstreamAction') {
foreach ($this->target->getRelMes() as $relMe) {
header('Link: <'.htmlspecialchars($relMe['href']).'>'.$type.'; rel="me"', false);
header('Link: <'.htmlspecialchars($relMe['href']).'>; rel="me"', false);
}
}
}