diff options
author | George Wang <gwang@php.net> | 2016-09-19 10:50:21 -0400 |
---|---|---|
committer | George Wang <gwang@php.net> | 2016-09-19 10:50:21 -0400 |
commit | 248ef30abe0da56f213b65ccfa900a57eec774dd (patch) | |
tree | c369dd715c0b458a1d75ecb54f0ddea23486a8e8 | |
parent | 7c7dc62c11da6e1e10452f96c1c8b823e5bb468c (diff) | |
parent | ca24c58e656e4c54b3d5bbf02c33fb679134e032 (diff) | |
download | php-git-248ef30abe0da56f213b65ccfa900a57eec774dd.tar.gz |
Merge branch 'PHP-7.0' into PHP-7.1
-rw-r--r-- | sapi/litespeed/lsapi_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/litespeed/lsapi_main.c b/sapi/litespeed/lsapi_main.c index e6b7e80efd..730070fd38 100644 --- a/sapi/litespeed/lsapi_main.c +++ b/sapi/litespeed/lsapi_main.c @@ -1083,9 +1083,9 @@ static int cli_main( int argc, char * argv[] ) case 'v': if (php_request_startup() != FAILURE) { #if ZEND_DEBUG - php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version()); + php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2016 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version()); #else - php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2015 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-2016 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version()); #endif #ifdef PHP_OUTPUT_NEWAPI php_output_end_all(); |