Response: Only set header Content-Type in method prepare if not already set

refs #12161
This commit is contained in:
Noah Hilverling 2016-10-17 16:34:07 +02:00
parent 703561f874
commit c927c32442
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ class Response extends Zend_Controller_Response_Http
} }
} }
$this->setHeader("Content-Type", $this->getContentType(), true); $this->setHeader('Content-Type', $this->getContentType(), false);
} }
/** /**