Skip to content
Snippets Groups Projects
Commit c974eebe authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Revert deparam fix typo repair.

parent f3b8ed0e
Branches
Tags
No related merge requests found
......@@ -63,7 +63,7 @@ function deparam(url) {
if(!request[name]) {
request[name] = [];
}
request[name].push(decodeURIComponent(pair[1].replace(/+/g, ' ')));
request[name].push(decodeURIComponent(pair[1].replace(/\+/g, ' ')));
} else {
request[name] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment