From da34491c59e1b92b75b9aa381a1e281b66333b48 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sun, 28 Feb 2016 20:50:45 +0100 Subject: [PATCH] Woops, undefined $type there. --- actions/showstream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } }