From: Adam Harvey Date: Tue, 10 May 2011 08:14:55 +0000 (+0000) Subject: Fix bug #54692 (SQLite3::open() Return Value) by correcting the SQLite3::open() X-Git-Tag: php-5.3.7RC1~137 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7dbf5a29e1b20b69f913370ab361919b4fc0006;p=php Fix bug #54692 (SQLite3::open() Return Value) by correcting the SQLite3::open() prototype. --- diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 7c3d23335d..4acfca45c1 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -89,7 +89,7 @@ zend_class_entry *php_sqlite3_sc_entry; zend_class_entry *php_sqlite3_stmt_entry; zend_class_entry *php_sqlite3_result_entry; -/* {{{ proto bool SQLite3::open(String filename [, int Flags [, string Encryption Key]]) +/* {{{ proto void SQLite3::open(String filename [, int Flags [, string Encryption Key]]) Opens a SQLite 3 Database, if the build includes encryption then it will attempt to use the key. */ PHP_METHOD(sqlite3, open) {