validator/httpd/cgi-bin check,1.504,1.505

Update of /sources/public/validator/httpd/cgi-bin
In directory hutz:/tmp/cvs-serv9773/httpd/cgi-bin

Modified Files:
	check 
Log Message:
The error template needs to be constructed before invoking prepCGI().

Index: check
===================================================================
RCS file: /sources/public/validator/httpd/cgi-bin/check,v
retrieving revision 1.504
retrieving revision 1.505
diff -u -d -r1.504 -r1.505
--- check	27 Apr 2007 20:17:48 -0000	1.504
+++ check	27 Apr 2007 20:20:33 -0000	1.505
@@ -259,16 +259,6 @@
 $File->{Warnings}   = []; # Warnings...
 $File->{Namespaces} = []; # Other (non-root) Namespaces.
 
-#########################################
-# Populate $File->{Opt} -- CGI Options. #
-#########################################
-
-#
-# Preprocess the CGI parameters.
-$q = &prepCGI($File, $q);
-
-
-
 ###############################################################################
 #### Generate Template for Result. ############################################
 ###############################################################################
@@ -404,9 +394,13 @@
 
 undef $lang;
 
-#####################################################
-# Populate $File->{Opt} -- CGI Options. (continued) #
-#####################################################
+#########################################
+# Populate $File->{Opt} -- CGI Options. #
+#########################################
+
+#
+# Preprocess the CGI parameters.
+$q = &prepCGI($File, $q);
 
 #
 # Set session switches.

Received on Friday, 27 April 2007 20:20:38 UTC