Not in the build. Allow POST requests to handle special cases too.

git-svn-id: svn://10.0.0.236/trunk@73338 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gagan%netscape.com
2000-06-27 22:10:27 +00:00
parent 68127ac939
commit 68c7d26b63
2 changed files with 6 additions and 2 deletions

View File

@@ -105,7 +105,9 @@ class ScriptFile {
if (s.startsWith("START")) {
// Check to see if this was in the requested URL
String filename = new String ("GET " + s.substring(6));
if (request.startsWith(filename))
String otherfilename = new String("POST " + s.substring(6));
if (request.startsWith(filename) ||
request.startsWith(otherfilename))
{
continue;
}