Disable encoding/decoding of plusses in URIs

This commit is contained in:
tlrobinson
2009-06-17 01:43:39 -07:00
parent 5d1db76be2
commit 19f1657824
3 changed files with 5 additions and 3 deletions
+1 -1
+3 -1
View File
@@ -301,7 +301,9 @@ objj_search.prototype.request = function(aFilePath, aMethod)
try
{
request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
// unclear whether plusses are reserved in the URI path
//request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
request.open("GET", aFilePath, YES);
request.send("");
}
catch (anException)