1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 12:12:26 +01:00

Fix bug in parseForm.

This commit is contained in:
Kris Maglione
2011-01-25 16:17:25 -05:00
parent 05a2859384
commit ec42ad5a5a
2 changed files with 2 additions and 2 deletions

View File

@@ -1179,7 +1179,7 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
}
}
if (post)
return [url, elems.join('&'), elems, charset];
return [url, elems.join('&'), charset, elems];
return [url + "?" + elems.join('&'), null, charset];
},