--- mod_czs.c 2000/08/09 06:54:43 1.1.1.1 +++ mod_czs.c 2000/08/09 08:45:38 1.3 @@ -52,7 +52,9 @@ } if(r->args != 0 || do_czs) { ap_table_setn(r->headers_out, "X-czs_filename", r->filename); - ap_table_setn(r->headers_out, "X-czs_args", r->args); + if (r->args != 0) { + ap_table_setn(r->headers_out, "X-czs_args", r->args); + } } r->content_type = "text/html"; /* hm? */ @@ -100,6 +102,7 @@ int translate_path(request_rec *r) { char *uri = r->uri; request_rec *subr; + do_czs=0; if (uri[0]=='/' && uri[1]=='_' && uri[2]=='/') { #if 0