mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-03 17:33:41 +00:00
Disable encoding/decoding of plusses in URIs
This commit is contained in:
Vendored
+1
-1
Submodule External/browserjs updated: 497f4106bf...87a9b481d1
Vendored
+1
-1
Submodule External/jack updated: d7b5ca58f4...7b410a1323
+3
-1
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user