helly           Fri Sep  5 16:05:09 2003 EDT

  Modified files:              
    /php-src/ext/sqlite sqlite.c 
  Log:
  WS
  
Index: php-src/ext/sqlite/sqlite.c
diff -u php-src/ext/sqlite/sqlite.c:1.92 php-src/ext/sqlite/sqlite.c:1.93
--- php-src/ext/sqlite/sqlite.c:1.92    Thu Sep  4 10:54:52 2003
+++ php-src/ext/sqlite/sqlite.c Fri Sep  5 16:05:08 2003
@@ -17,7 +17,7 @@
    |          Marcus Boerger <[EMAIL PROTECTED]>                              |
    +----------------------------------------------------------------------+
 
-   $Id: sqlite.c,v 1.92 2003/09/04 14:54:52 helly Exp $ 
+   $Id: sqlite.c,v 1.93 2003/09/05 20:05:08 helly Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -944,7 +944,7 @@
 {
        php_info_print_table_start();
        php_info_print_table_header(2, "SQLite support", "enabled");
-       php_info_print_table_row(2, "PECL Module version", PHP_SQLITE_MODULE_VERSION " 
$Id: sqlite.c,v 1.92 2003/09/04 14:54:52 helly Exp $");
+       php_info_print_table_row(2, "PECL Module version", PHP_SQLITE_MODULE_VERSION " 
$Id: sqlite.c,v 1.93 2003/09/05 20:05:08 helly Exp $");
        php_info_print_table_row(2, "SQLite Library", sqlite_libversion());
        php_info_print_table_row(2, "SQLite Encoding", sqlite_libencoding());
        php_info_print_table_end();
@@ -1756,17 +1756,12 @@
                        fci.params = NULL;
                }
                fci.no_separation = 1;
-       
 
                fcc.initialized = 1;
-
                fcc.function_handler = ce->constructor;
-
                fcc.calling_scope = EG(scope);
-
                fcc.object_pp = &return_value;
 
-       
                if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
                        zend_throw_exception_ex(sqlite_ce_exception, 0 TSRMLS_CC, 
"Could not execute %s::%s()", class_name, ce->constructor->common.function_name);
                } else {

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

Reply via email to