Fix bug 363235 -- REJECT_SERVER is taken to mean "content is blocked by user",

and that's not what we want here.  r+sr=sicking


git-svn-id: svn://10.0.0.236/trunk@217201 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2006-12-19 15:32:46 +00:00
parent 78cfdd7ca8
commit 1fdc2a2db8

View File

@@ -95,7 +95,7 @@ nsNoDataProtocolContentPolicy::ShouldLoad(PRUint32 aContentType,
do_QueryInterface(handler);
if (extHandler) {
*aDecision = nsIContentPolicy::REJECT_SERVER;
*aDecision = nsIContentPolicy::REJECT_REQUEST;
}
}