From 2a3a63857c1f6dd403d17908bea6faa0bf0bbb4d Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Mon, 21 Mar 2016 19:13:01 +1100 Subject: [PATCH] text/javascript is obsolete. Fixes #1847 --- modules/system/classes/CombineAssets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/classes/CombineAssets.php b/modules/system/classes/CombineAssets.php index dd0081627..b5bd6e19d 100644 --- a/modules/system/classes/CombineAssets.php +++ b/modules/system/classes/CombineAssets.php @@ -175,7 +175,7 @@ class CombineAssets $combiner = $this->prepareCombiner($cacheInfo['files']); $contents = $combiner->dump(); - $mime = ($cacheInfo['extension'] == 'css') ? 'text/css' : 'text/javascript'; + $mime = ($cacheInfo['extension'] == 'css') ? 'text/css' : 'application/javascript'; header_remove(); $response = Response::make($contents);