diff options
author | George Wang <gwang@php.net> | 2016-09-19 10:52:58 -0400 |
---|---|---|
committer | George Wang <gwang@php.net> | 2016-09-19 10:52:58 -0400 |
commit | 6f7479251bb4e5466fc77e8e8ad01d3c1d85f02e (patch) | |
tree | 44adbf0035bba0a1bca2c380d58e08296f95a7e6 | |
parent | f1f35444196b3626ec8d272f714c494041f8e88a (diff) | |
parent | 248ef30abe0da56f213b65ccfa900a57eec774dd (diff) | |
download | php-git-6f7479251bb4e5466fc77e8e8ad01d3c1d85f02e.tar.gz |
Merge branch '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(); |