]> granicus.if.org Git - php/commitdiff
Fix bug #54692 (SQLite3::open() Return Value) by correcting the SQLite3::open()
authorAdam Harvey <aharvey@php.net>
Tue, 10 May 2011 08:14:55 +0000 (08:14 +0000)
committerAdam Harvey <aharvey@php.net>
Tue, 10 May 2011 08:14:55 +0000 (08:14 +0000)
prototype.

ext/sqlite3/sqlite3.c

index 7c3d23335d4e4e245d26118fc2446e59e0ec0044..4acfca45c1f08415f508d3738a5aae6ae7be4797 100644 (file)
@@ -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)
 {