]> granicus.if.org Git - php/commitdiff
Some PHP-info layout fixes (\n will automatically be converted into <br />)
authorSander Roobol <sander@php.net>
Wed, 20 Mar 2002 18:29:28 +0000 (18:29 +0000)
committerSander Roobol <sander@php.net>
Wed, 20 Mar 2002 18:29:28 +0000 (18:29 +0000)
and a comment-related fix.

ext/dbx/dbx.c

index 3cd74ffae3d1634b055fbca6e3b9bfade45ef32d..16dcfa5dd99b5a8920b5ca88941022984b07b03d 100644 (file)
@@ -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();
 }