No longer print the contents of forms when they were submitted. bug 13061; r=karnaze@netscape.com

This commit is contained in:
kmcclusk%netscape.com 2000-01-06 22:07:21 +00:00
Родитель 336a9a916a
Коммит 11558883fa
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -692,8 +692,11 @@ nsFormFrame::OnSubmit(nsIPresContext* aPresContext, nsIFrame* aFrame)
// XXX DON'T NS_IF_RELEASE(postDataStream), this happens in Necko!
NS_IF_RELEASE(handler);
DebugPrint("url", absURLSpec);
DebugPrint("data", data);
// If you need these for debugging...
// wrap them in DEBUG_<username>
// Printing the data and url prints the contents of passwords
//DebugPrint("url", absURLSpec);
//DebugPrint("data", data);
}
return result;
}