Bug 41585: Don't chop of query string when POSTing forms, only when GETting them r=harishd

This commit is contained in:
pollmann%netscape.com 2000-06-22 02:49:01 +00:00
Родитель 8bcb68b1b1
Коммит 76aa7b59d5
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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 {