diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-05-30 22:31:12 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-05-30 22:31:12 +0000 |
commit | aa50e817ae6a83b8c41d53e7490c593595749c36 (patch) | |
tree | 8d7eea3f39c1a47f26f2209a604d2c058c74d411 /sapi/cgi | |
parent | f1b68224fe4c5777f714ff365df3de024438c6e4 (diff) | |
download | php-git-aa50e817ae6a83b8c41d53e7490c593595749c36.tar.gz |
CGI SAPI should honour this setting
Diffstat (limited to 'sapi/cgi')
-rw-r--r-- | sapi/cgi/cgi_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |