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

git-svn-id: svn://10.0.0.236/trunk@57010 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kmcclusk%netscape.com 2000-01-06 22:07:21 +00:00
parent beca515cbb
commit edf6a2057a

View File

@ -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;
}