From: Mikael Nordfeldth Date: Sun, 28 Feb 2016 19:50:45 +0000 (+0100) Subject: Woops, undefined $type there. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=da34491c59e1b92b75b9aa381a1e281b66333b48;p=quix0rs-gnu-social.git Woops, undefined $type there. --- diff --git a/actions/showstream.php b/actions/showstream.php index 33ec49df99..dbe74197dc 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -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); } } }