summaryrefslogtreecommitdiff
path: root/ext/dbx
diff options
context:
space:
mode:
authorSander Roobol <sander@php.net>2002-03-20 18:29:28 +0000
committerSander Roobol <sander@php.net>2002-03-20 18:29:28 +0000
commit8581f8394ba6fa921521a1c52683cc39535cb134 (patch)
treec339b9ba24a3d9c5316cb17c93190dec94a3ce44 /ext/dbx
parent396dc67cf75787c9aeddaa55beb0878534db87e8 (diff)
downloadphp-git-8581f8394ba6fa921521a1c52683cc39535cb134.tar.gz
Some PHP-info layout fixes (\n will automatically be converted into <br />)
and a comment-related fix.
Diffstat (limited to 'ext/dbx')
-rw-r--r--ext/dbx/dbx.c6
1 files changed, 3 insertions, 3 deletions
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<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();
}