diff options
author | Adam Harvey <aharvey@php.net> | 2011-05-10 08:14:55 +0000 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2011-05-10 08:14:55 +0000 |
commit | a7dbf5a29e1b20b69f913370ab361919b4fc0006 (patch) | |
tree | 660278c4be3bc2b1f37f7a2507ceac7a923bd366 /ext/sqlite3/sqlite3.c | |
parent | 229bdc7ccb4f1ef684172cfa5d7fb78eda8cd469 (diff) | |
download | php-git-a7dbf5a29e1b20b69f913370ab361919b4fc0006.tar.gz |
Fix bug #54692 (SQLite3::open() Return Value) by correcting the SQLite3::open()
prototype.
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
-rw-r--r-- | ext/sqlite3/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |