зеркало из https://github.com/mozilla/pjs.git
Bug 41585: Don't chop of query string when POSTing forms, only when GETting them r=harishd
This commit is contained in:
Родитель
8bcb68b1b1
Коммит
76aa7b59d5
|
@ -753,8 +753,9 @@ nsFormFrame::OnSubmit(nsIPresContext* aPresContext, nsIFrame* aFrame)
|
|||
href.AppendWithConversion(relPath);
|
||||
|
||||
// If re-using the same URL, chop off old query string (bug 25330)
|
||||
// Only do this for GET not POST (bug 41585)
|
||||
PRInt32 queryStart = href.FindChar('?');
|
||||
if (kNotFound != queryStart) {
|
||||
if ((kNotFound != queryStart) && !isPost) {
|
||||
href.Truncate(queryStart);
|
||||
}
|
||||
} else {
|
||||
|
|
Загрузка…
Ссылка в новой задаче