diff options
| author | Andrei Zmievski <andrei@php.net> | 2000-06-26 18:05:55 +0000 |
|---|---|---|
| committer | Andrei Zmievski <andrei@php.net> | 2000-06-26 18:05:55 +0000 |
| commit | 4010b422ddca37f110a47f17863f9114cc50b7a6 (patch) | |
| tree | f5f5d2daf750da0c7a99dbd827e4df14173a71d6 /sapi/cgi/cgi_main.c | |
| parent | bcb308c522e2a6ae495fca931a448e353e945b9e (diff) | |
| download | php-git-4010b422ddca37f110a47f17863f9114cc50b7a6.tar.gz | |
Separate plain name returned by php_sapi_module() and pretty name
used for output.
Diffstat (limited to 'sapi/cgi/cgi_main.c')
| -rw-r--r-- | sapi/cgi/cgi_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 9807cafcf3..f3b91f0ffe 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -199,7 +199,8 @@ static int sapi_cgi_deactivate(SLS_D) static sapi_module_struct sapi_module = { - "CGI", /* name */ + "cgi", /* name */ + "CGI", /* pretty name */ php_module_startup, /* startup */ php_module_shutdown_wrapper, /* shutdown */ |
