From 3210771d315882c6de173d2d86568d82c1366b39 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 19 Jun 2006 18:21:19 +0000 Subject: [PATCH] display oci8 version in phpinfo() --- ext/oci8/oci8.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index c5aad2ab1a..c42c3a8e36 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -371,7 +371,7 @@ zend_module_entry oci8_module_entry = { PHP_RINIT(oci), /* per-request startup function */ PHP_RSHUTDOWN(oci), /* per-request shutdown function */ PHP_MINFO(oci), /* information function */ - "1.1", + "1.2.1", PHP_MODULE_GLOBALS(oci), /* globals descriptor */ PHP_GINIT(oci), /* globals ctor */ NULL, /* globals dtor */ @@ -651,6 +651,7 @@ PHP_MINFO_FUNCTION(oci) php_info_print_table_start(); php_info_print_table_row(2, "OCI8 Support", "enabled"); + php_info_print_table_row(2, "Version", "1.2.1"); php_info_print_table_row(2, "Revision", "$Revision$"); sprintf(buf, "%ld", OCI_G(num_persistent)); -- 2.40.0