From: Sander Roobol Date: Wed, 20 Mar 2002 18:29:28 +0000 (+0000) Subject: Some PHP-info layout fixes (\n will automatically be converted into
) X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8581f8394ba6fa921521a1c52683cc39535cb134;p=php Some PHP-info layout fixes (\n will automatically be converted into
) and a comment-related fix. --- diff --git a/ext/dbx/dbx.c b/ext/dbx/dbx.c index 3cd74ffae3..16dcfa5dd9 100644 --- a/ext/dbx/dbx.c +++ b/ext/dbx/dbx.c @@ -157,8 +157,8 @@ zend_module_entry dbx_module_entry = { dbx_functions, ZEND_MINIT(dbx), ZEND_MSHUTDOWN(dbx), - NULL, /*ZEND_RINIT(dbx), /* Replace with NULL if there's nothing to do at request start */ - NULL, /*ZEND_RSHUTDOWN(dbx), /* Replace with NULL if there's nothing to do at request end */ + NULL, /*ZEND_RINIT(dbx), / * Replace with NULL if there's nothing to do at request start */ + NULL, /*ZEND_RSHUTDOWN(dbx), / * Replace with NULL if there's nothing to do at request end */ ZEND_MINFO(dbx), NO_VERSION_YET, STANDARD_MODULE_PROPERTIES @@ -213,7 +213,7 @@ ZEND_MINFO_FUNCTION(dbx) php_info_print_table_start(); php_info_print_table_row(2, "dbx support", "enabled"); php_info_print_table_row(2, "dbx version", "1.0.0"); - php_info_print_table_row(2, "supported databases", "MySQL
ODBC
PostgreSQL
Microsoft SQL Server
FrontBase
Oracle 8 (not really)
Sybase-CT"); + php_info_print_table_row(2, "supported databases", "MySQL\nODBC\nPostgreSQL\nMicrosoft SQL Server\nFrontBase\nOracle 8 (not really)\nSybase-CT"); php_info_print_table_end(); }