From: Ivan Enderlin Date: Wed, 18 Dec 2013 15:13:14 +0000 (+0100) Subject: Add Zend version and copyright. X-Git-Tag: php-5.6.0alpha1~110^2~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bc35a70d552207ffad7f869db40e127af84121b;p=php Add Zend version and copyright. --- diff --git a/phpdbg.c b/phpdbg.c index 12432a554b..55943de58f 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -1001,14 +1001,19 @@ phpdbg_main: #endif case 'V': { + sapi_startup(phpdbg); + phpdbg->startup(phpdbg); printf( - "phpdbg %s (built: %s %s)\nCopyright (c) 2013 %s\nPHP %s, Copyright (c) 1997-2013 The PHP Group\n", + "phpdbg %s (built: %s %s)\nCopyright (c) 2013 %s\nPHP %s, Copyright (c) 1997-2013 The PHP Group\n%s", PHPDBG_VERSION, __DATE__, __TIME__, PHPDBG_AUTHORS, - PHP_VERSION + PHP_VERSION, + get_zend_version() ); + sapi_deactivate(TSRMLS_C); + sapi_shutdown(); return 0; } break; }