From: Moriyoshi Koizumi Date: Fri, 30 May 2003 22:31:12 +0000 (+0000) Subject: CGI SAPI should honour this setting X-Git-Tag: RELEASE_1_0_2~499 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa50e817ae6a83b8c41d53e7490c593595749c36;p=php CGI SAPI should honour this setting --- 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;