1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 17:43:13 +02:00

finally (thanks Andreas)

This commit is contained in:
Colin Viebrock
2000-04-05 21:03:30 +00:00
parent 1e344cf010
commit f57d8a2c25

View File

@@ -169,9 +169,11 @@ PHPAPI void php_print_info(int flag)
#endif
php_info_print_table_row(2, "php.ini Path", CONFIGURATION_FILE_PATH );
/* this causes seg faults
php_info_print_table_row(2, "ZEND_DEBUG", ZEND_DEBUG );
*/
#ifdef ZEND_DEBUG
php_info_print_table_row(2, "ZEND_DEBUG", "true" );
#else
php_info_print_table_row(2, "ZEND_DEBUG", "false" );
#endif
if (sapi_module.name)
php_info_print_table_row(2, "SAPI", sapi_module.name );