From 4fd6492bc9b3ec7a7e4f4e8bb15ac2ba50328b48 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 12 Jan 2017 09:25:28 +0100 Subject: [PATCH] fixed content type header --- svg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svg.php b/svg.php index 684b811..f81b3c2 100644 --- a/svg.php +++ b/svg.php @@ -63,7 +63,7 @@ class SVG { */ public function out() { $this->setStyle(); - header('image/svg+xml'); + header('Content-Type: image/svg+xml'); echo $this->xml->asXML(); }