diff options
author | John McLear <john@mclear.co.uk> | 2012-03-24 07:58:07 -0700 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2012-03-24 07:58:07 -0700 |
commit | f2ea56334d8960a3a6894be8f261e8aa923f61fd (patch) | |
tree | 03b4d68b439d52ce2c1542301b2be368a0a8e49c /src/node | |
parent | debdc340afa58c8b6f8b5a1dbb5e92169098eb53 (diff) | |
parent | 208d88cc036c6c2dda4f1746f7b17adbaec1a1a0 (diff) | |
download | etherpad-lite-f2ea56334d8960a3a6894be8f261e8aa923f61fd.zip |
Merge pull request #571 from fourplusone/fix_ie9_plugins
Fix ie9 plugins
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/hooks/express/static.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/hooks/express/static.js b/src/node/hooks/express/static.js index e8f9afbb..9209967c 100644 --- a/src/node/hooks/express/static.js +++ b/src/node/hooks/express/static.js @@ -35,7 +35,7 @@ exports.expressCreateServer = function (hook_name, args, cb) { // serve plugin definitions // not very static, but served here so that client can do require("pluginfw/static/js/plugin-definitions.js"); args.app.get('/pluginfw/plugin-definitions.json', function (req, res, next) { - res.header("Content-Type","application/json; charset: utf-8"); + res.header("Content-Type","application/json; charset=utf-8"); res.write(JSON.stringify({"plugins": plugins.plugins, "parts": plugins.parts})); res.end(); }); |