Skip to content

Commit

Permalink
Some PHP-info layout fixes (\n will automatically be converted into <…
Browse files Browse the repository at this point in the history
…br />)

and a comment-related fix.
  • Loading branch information
Sander Roobol committed Mar 20, 2002
1 parent 396dc67 commit 8581f83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/dbx/dbx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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<br />ODBC<br />PostgreSQL<br />Microsoft SQL Server<br />FrontBase<br />Oracle 8 (not really)<br />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();
}

Expand Down

0 comments on commit 8581f83

Please sign in to comment.