/* Setup the CGI variables if this is the main request */
if (r->main == NULL ||
/* .. or if the sub-request environment differs from the main-request. */
r->subprocess_env != r->main->subprocess_env)
{
/* setup standard CGI variables */
ap_add_common_vars(r);
ap_add_cgi_vars(r);
}
if (r->main == NULL ||
/* .. or if the sub-request environment differs from the main-request. */
r->subprocess_env != r->main->subprocess_env)
{
/* setup standard CGI variables */
ap_add_common_vars(r);
ap_add_cgi_vars(r);
}