helly           Fri Sep  5 16:09:20 2003 EDT

  Modified files:              
    /php-src/ext/sqlite sqlite.c 
  Log:
  Omitting is also possible here
  
Index: php-src/ext/sqlite/sqlite.c
diff -u php-src/ext/sqlite/sqlite.c:1.93 php-src/ext/sqlite/sqlite.c:1.94
--- php-src/ext/sqlite/sqlite.c:1.93    Fri Sep  5 16:05:08 2003
+++ php-src/ext/sqlite/sqlite.c Fri Sep  5 16:09:19 2003
@@ -17,7 +17,7 @@
    |          Marcus Boerger <[EMAIL PROTECTED]>                              |
    +----------------------------------------------------------------------+
 
-   $Id: sqlite.c,v 1.93 2003/09/05 20:05:08 helly Exp $ 
+   $Id: sqlite.c,v 1.94 2003/09/05 20:09:19 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.93 2003/09/05 20:05:08 helly Exp $");
+       php_info_print_table_row(2, "PECL Module version", PHP_SQLITE_MODULE_VERSION " 
$Id: sqlite.c,v 1.94 2003/09/05 20:09:19 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();
@@ -1773,7 +1773,7 @@
                        efree(fci.params);
                }
        } else if (ctor_params && Z_TYPE_P(ctor_params) != IS_NULL) {
-               zend_throw_exception_ex(sqlite_ce_exception, 0 TSRMLS_CC, "Class %s 
does not have a constructor use NULL for parameter ctor_params", class_name);
+               zend_throw_exception_ex(sqlite_ce_exception, 0 TSRMLS_CC, "Class %s 
does not have a constructor, use NULL for parameter ctor_params or omit it", 
class_name);
        }
 }
 /* }}} */

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

Reply via email to