tony2001                Fri Jun 23 08:25:58 2006 UTC

  Modified files:              
    /php-src/ext/oci8   oci8.c 
  Log:
  fix typo and bug #37886
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/oci8/oci8.c?r1=1.304&r2=1.305&diff_format=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.304 php-src/ext/oci8/oci8.c:1.305
--- php-src/ext/oci8/oci8.c:1.304       Wed Jun 21 10:51:55 2006
+++ php-src/ext/oci8/oci8.c     Fri Jun 23 08:25:58 2006
@@ -26,7 +26,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: oci8.c,v 1.304 2006/06/21 10:51:55 tony2001 Exp $ */
+/* $Id: oci8.c,v 1.305 2006/06/23 08:25:58 tony2001 Exp $ */
 /* TODO
  *
  * file://localhost/www/docs/oci10/ociaahan.htm#423823 - implement lob_empty() 
with OCI_ATTR_LOBEMPTY
@@ -667,7 +667,7 @@
        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: 1.304 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.305 $");
 
        sprintf(buf, "%ld", OCI_G(num_persistent));
        php_info_print_table_row(2, "Active Persistent Connections", buf);
@@ -1007,7 +1007,7 @@
 
 #if HAVE_OCI_ENV_NLS_CREATE
        if (charset && *charset) {
-               smart_str_appends_ex(&hashed_details, charset, 1);
+               smart_str_appends_ex(&hashed_details, charset, 0);
        }
        else {
                size_t rsize = 0;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to