sixd Tue Apr 1 18:38:17 2008 UTC Modified files: /php-src/ext/oci8 oci8.c Log: Use new version macro http://cvs.php.net/viewvc.cgi/php-src/ext/oci8/oci8.c?r1=1.346&r2=1.347&diff_format=u Index: php-src/ext/oci8/oci8.c diff -u php-src/ext/oci8/oci8.c:1.346 php-src/ext/oci8/oci8.c:1.347 --- php-src/ext/oci8/oci8.c:1.346 Tue Mar 25 02:25:02 2008 +++ php-src/ext/oci8/oci8.c Tue Apr 1 18:38:17 2008 @@ -26,7 +26,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: oci8.c,v 1.346 2008/03/25 02:25:02 sixd Exp $ */ +/* $Id: oci8.c,v 1.347 2008/04/01 18:38:17 sixd Exp $ */ /* TODO * * file://localhost/www/docs/oci10/ociaahan.htm#423823 - implement lob_empty() with OCI_ATTR_LOBEMPTY @@ -386,7 +386,7 @@ PHP_RINIT(oci), /* per-request startup function */ PHP_RSHUTDOWN(oci), /* per-request shutdown function */ PHP_MINFO(oci), /* information function */ - "1.3.1", + PHP_OCI8_VERSION, PHP_MODULE_GLOBALS(oci), /* globals descriptor */ PHP_GINIT(oci), /* globals ctor */ NULL, /* globals dtor */ @@ -677,7 +677,7 @@ php_info_print_table_start(); php_info_print_table_row(2, "OCI8 Support", "enabled"); php_info_print_table_row(2, "Version", PHP_OCI8_VERSION); - php_info_print_table_row(2, "Revision", "$Revision: 1.346 $"); + php_info_print_table_row(2, "Revision", "$Revision: 1.347 $"); snprintf(buf, sizeof(buf), "%ld", OCI_G(num_persistent)); php_info_print_table_row(2, "Active Persistent Connections", buf);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php