Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.webapp/m/index.js')
-rw-r--r--org.eclipse.help.webapp/m/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.webapp/m/index.js b/org.eclipse.help.webapp/m/index.js
index 3edb9034f..34e3c73f2 100644
--- a/org.eclipse.help.webapp/m/index.js
+++ b/org.eclipse.help.webapp/m/index.js
@@ -2681,7 +2681,7 @@
function getParams(queryPart) {
var params = {};
queryPart.replace(/(?:^|&+)([^=&]+)=([^&]*)/gi,
- function(_match, group1Param, group2Value) { params[group1Param] = decodeURIComponent(group2Value); });
+ function(_match, group1Param, group2Value) { params[group1Param] = decodeURIComponent(group2Value.replace(/\+/g, ' ')); });
return params;
}

Back to the top