summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-05 12:04:56 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-11-05 14:35:11 +0100
commit6d7a5bf943494cf573d2daad4d2839a8715cd8c9 (patch)
tree710418db992756f3dfe4a49397b0d8c5ccaf1b08
parent8d87a2c4a643dffa42b2a52d0c662992946271ce (diff)
downloadnextcloud-server-6d7a5bf943494cf573d2daad4d2839a8715cd8c9.tar.gz
nextcloud-server-6d7a5bf943494cf573d2daad4d2839a8715cd8c9.zip
fix typo in content type
-rw-r--r--lib/public/appframework/http/jsonresponse.php2
-rw-r--r--tests/lib/appframework/http/JSONResponseTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/appframework/http/jsonresponse.php b/lib/public/appframework/http/jsonresponse.php
index c6360e0a0f5..c9c8696323d 100644
--- a/lib/public/appframework/http/jsonresponse.php
+++ b/lib/public/appframework/http/jsonresponse.php
@@ -49,7 +49,7 @@ class JSONResponse extends Response {
public function __construct($data=array(), $statusCode=Http::STATUS_OK) {
$this->data = $data;
$this->setStatus($statusCode);
- $this->addHeader('Content-type', 'application/json; charset=utf-8');
+ $this->addHeader('Content-Type', 'application/json; charset=utf-8');
}
diff --git a/tests/lib/appframework/http/JSONResponseTest.php b/tests/lib/appframework/http/JSONResponseTest.php
index c0c58ebf761..67f0f53ac6d 100644
--- a/tests/lib/appframework/http/JSONResponseTest.php
+++ b/tests/lib/appframework/http/JSONResponseTest.php
@@ -48,7 +48,7 @@ class JSONResponseTest extends \PHPUnit_Framework_TestCase {
public function testHeader() {
$headers = $this->json->getHeaders();
- $this->assertEquals('application/json; charset=utf-8', $headers['Content-type']);
+ $this->assertEquals('application/json; charset=utf-8', $headers['Content-Type']);
}