Skip to content

Commit

Permalink
fixing space not being replaced by +, email from Matt
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianh committed Jan 29, 2021
1 parent 532bd65 commit b4f557c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbPyLib/cellbrowser/cbWeb/js/cellBrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -6948,7 +6948,7 @@ var cellbrowser = function() {
}

var argStr = jQuery.param(urlVars); // convert to query-like string
argStr = argStr.replace("%20", "+");
argStr = argStr.replace(/%20/g, "+");

var dsName = "noname";
if (db!==null)
Expand Down

0 comments on commit b4f557c

Please sign in to comment.