From aa50e817ae6a83b8c41d53e7490c593595749c36 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Fri, 30 May 2003 22:31:12 +0000 Subject: [PATCH] CGI SAPI should honour this setting --- sapi/cgi/cgi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 2c3b604dd3..d8acfd1c3f 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -1444,7 +1444,7 @@ consult the installation file that came with this distribution, or visit \n\ for (i = optind, len = 0; i < argc; i++) { strcat(s, argv[i]); if (i < (argc - 1)) { - strcat(s, "&"); + strcat(s, PG(arg_separator).input); } } SG(request_info).query_string = s; -- 2.50.1