]> git.p6c8.net - jirafeau_project.git/commitdiff
[BUGFIX] Deliver JavaScript with correct MIME type
authorDan Untenzu <untenzu@webit.de>
Thu, 12 Jan 2017 15:28:47 +0000 (16:28 +0100)
committerDan Untenzu <untenzu@webit.de>
Thu, 12 Jan 2017 15:28:47 +0000 (16:28 +0100)
The JavaScript lib is generated by a PHP file. This
file will be blocked in browsers, if the server has the
security option "X-Content-Type-Options: nosniff" set.

Set the correct MIME type (text/javascript) in the header
to avoid this behaviour.

Refs #84

lib/functions.js.php

index 24be13fe429bfd06e74cf29d2bcbb4a508b41642..e8a6bb18048f1ce1c9b19d40c93be887dd63d107 100644 (file)
@@ -18,6 +18,8 @@
  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
+header('Content-Type: text/javascript');
+
 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/../');
 require (JIRAFEAU_ROOT . 'lib/config.original.php');
 require (JIRAFEAU_ROOT . 'lib/settings.php');
 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/../');
 require (JIRAFEAU_ROOT . 'lib/config.original.php');
 require (JIRAFEAU_ROOT . 'lib/settings.php');

patrick-canterino.de