From: Edin Kadribasic Date: Tue, 5 Nov 2002 11:13:35 +0000 (+0000) Subject: Made php -v output look nicer on standard 80 column display. X-Git-Tag: php-4.3.0RC1~275 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9276b276f740156d5649933ec7278c00e92ffeca;p=php Made php -v output look nicer on standard 80 column display. --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 110fed1061..092369b98e 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -594,7 +594,7 @@ int main(int argc, char *argv[]) SG(headers_sent) = 1; SG(request_info).no_headers = 1; } - php_printf("PHP %s (%s) (built: %s %s), Copyright (c) 1997-2002 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version()); + php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2002 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version()); php_end_ob_buffers(1 TSRMLS_CC); exit(1); break;