mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
Fixed bug #10095.
This commit is contained in:
+10
-9
@@ -472,17 +472,18 @@ PHP_MINFO_FUNCTION(ifx)
|
||||
maxl[15]=0;
|
||||
}
|
||||
|
||||
php_info_print_table_start();
|
||||
php_info_print_table_header(2, "Informix support", "enabled");
|
||||
sprintf(buf, "%ld", IFXG(num_persistent));
|
||||
php_info_print_table_row(2, "Persistent links", buf);
|
||||
sprintf(buf, "%ld", IFXG(num_links));
|
||||
php_info_print_table_row(2, "Total links", buf);
|
||||
sprintf(buf, "%02.2f", (double)(IFX_VERSION/100.0));
|
||||
php_info_print_table_row(2, "ESQL/C Version", buf);
|
||||
php_info_print_table_end();
|
||||
|
||||
DISPLAY_INI_ENTRIES();
|
||||
|
||||
php_printf("<table border=\"5\" width=\"600\">\n");
|
||||
php_info_print_table_header(2, "Key", "Value");
|
||||
sprintf(buf, "%ld", IFXG(num_persistent));
|
||||
php_info_print_table_row(2, "Persistent links : ", buf);
|
||||
sprintf(buf, "%ld", IFXG(num_links));
|
||||
php_info_print_table_row(2, "Total links : ", buf);
|
||||
sprintf(buf, "%02.2f", (double)(IFX_VERSION/100.0));
|
||||
php_info_print_table_row(2, "ESQL/C Version: ", buf);
|
||||
php_printf("</table>\n");
|
||||
}
|
||||
|
||||
static void php3_ifx_set_default_link(int id)
|
||||
|
||||
Reference in New Issue
Block a user