summaryrefslogtreecommitdiff
path: root/ext/oci8/oci8.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-06-19 18:21:28 +0000
committerAntony Dovgal <tony2001@php.net>2006-06-19 18:21:28 +0000
commitba8f17e483137a573fc1b04ca91819bfac7a285a (patch)
tree0153472a2fe84a0bebd70040ab8162b1a3f3f54b /ext/oci8/oci8.c
parent33616195b9859363270cec58f79f7dc9ac847d18 (diff)
downloadphp-git-ba8f17e483137a573fc1b04ca91819bfac7a285a.tar.gz
MFH: display oci8 version in phpinfo()
Diffstat (limited to 'ext/oci8/oci8.c')
-rw-r--r--ext/oci8/oci8.c3
1 files changed, 2 insertions, 1 deletions
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));