fixed content type header

This commit is contained in:
Andreas Gohr 2017-01-12 09:25:28 +01:00
commit 4fd6492bc9

View file

@ -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();
}