From: Andrei Zmievski Date: Fri, 15 Oct 1999 20:27:38 +0000 (+0000) Subject: (php3_log_err): Don't output error message to stderr when X-Git-Tag: php-4.0b3_RC2~158 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b625bbd14a05487063446a55a9c7b8cd4cac567c;p=php (php3_log_err): Don't output error message to stderr when running as CGI binary. --- diff --git a/main/main.c b/main/main.c index c2c5a49647..13efae6296 100644 --- a/main/main.c +++ b/main/main.c @@ -333,12 +333,14 @@ void php3_log_err(char *log_message) } #endif /*APACHE */ +#if 0 #if CGI_BINARY if (php3_header()) { fprintf(stderr, log_message); fprintf(stderr, "\n"); } #endif +#endif }