When loading modules escape "+" in case they're converted to spaces later.

Updated to latest Narwhal and Jack
This commit is contained in:
tlrobinson
2009-05-25 15:31:35 -07:00
committed by Francisco Ryan Tolmasky I
parent 28b387554f
commit 26ebd6bf64
3 changed files with 3 additions and 3 deletions
+1 -1
+1 -1
View File
@@ -301,7 +301,7 @@ objj_search.prototype.request = function(aFilePath, aMethod)
try
{
request.open("GET", aFilePath, YES);
request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
request.send("");
}
catch (anException)