httpd: comment on QUERY_STRING
This commit is contained in:
parent
8b45837b4c
commit
428f7ae6e2
@ -1039,9 +1039,13 @@ static int sendCgi(const char *url,
|
|||||||
setenv1("SCRIPT_FILENAME", realpath_buff);
|
setenv1("SCRIPT_FILENAME", realpath_buff);
|
||||||
/* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
|
/* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
|
||||||
setenv1("SCRIPT_NAME", purl);
|
setenv1("SCRIPT_NAME", purl);
|
||||||
/* TODO: bug 996 says we need to decodeString(config->query)
|
/* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
|
||||||
* before placing it into env. Is this true? Add example
|
* QUERY_STRING: The information which follows the ? in the URL
|
||||||
* in the comment please... */
|
* which referenced this script. This is the query information.
|
||||||
|
* It should not be decoded in any fashion. This variable
|
||||||
|
* should always be set when there is query information,
|
||||||
|
* regardless of command line decoding. */
|
||||||
|
/* (Older versions of bbox seemed to do some decoding) */
|
||||||
setenv1("QUERY_STRING", config->query);
|
setenv1("QUERY_STRING", config->query);
|
||||||
setenv1("SERVER_SOFTWARE", httpdVersion);
|
setenv1("SERVER_SOFTWARE", httpdVersion);
|
||||||
putenv("SERVER_PROTOCOL=HTTP/1.0");
|
putenv("SERVER_PROTOCOL=HTTP/1.0");
|
||||||
|
Loading…
Reference in New Issue
Block a user