diff --git a/index.js b/index.js index 50929dc..af2fc18 100644 --- a/index.js +++ b/index.js @@ -204,8 +204,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e nEnv["SERVER_NAME"] = req.headers.host; nEnv["DOCUMENT_ROOT"] = process.cwd(); nEnv["SCRIPT_NAME"] = scgiConf.path; - nEnv["PATH_INFO"] = decodeURI(b); - nEnv["PATH_TRANSLATED"] = b ? decodeURI((process.cwd() + (require("os").platform == "win32" ? b.replace(/\//g, "\\") : b)).replace((require("os").platform == "win32" ? /\\\\/g : /\/\//g), (require("os").platform == "win32" ? "\\" : "/"))) : ""; + nEnv["PATH_INFO"] = decodeURIComponent(b); + nEnv["PATH_TRANSLATED"] = b ? ((process.cwd() + decodeURIComponent(require("os").platform == "win32" ? b.replace(/\//g, "\\") : b)).replace((require("os").platform == "win32" ? /\\\\/g : /\/\//g), (require("os").platform == "win32" ? "\\" : "/"))) : ""; nEnv["REQUEST_METHOD"] = req.method; nEnv["SCGI"] = "1"; nEnv["REQUEST_URI"] = (!origHref || origHref == href) ? req.url : (origHref + (uobject.search ? ("?" + uobject.search) : "")); @@ -232,7 +232,7 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e if (href == scgiConf.path || href.indexOf(scgiConf.path + "/") == 0) { try { executeSCGIWithEnv( - href, + decodeURIComponent(href), req, res, req.socket.localAddress, diff --git a/mod.info b/mod.info index 3a3c5bd..a5c28e5 100755 --- a/mod.info +++ b/mod.info @@ -1,4 +1,4 @@ { "name": "OrangeCircle SCGI client for SVR.JS", - "version": "1.1.0" + "version": "1.1.1" }