summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2011-05-10 08:14:55 +0000
committerAdam Harvey <aharvey@php.net>2011-05-10 08:14:55 +0000
commita642b52295d8af9bfbffbf88c562de492a62aed3 (patch)
tree0fb5faaa6aeb430818133bae092196c3cc2de86e
parent9a197618b4ad2305cc884abe80ab7ded5fb22fd8 (diff)
downloadphp-git-a642b52295d8af9bfbffbf88c562de492a62aed3.tar.gz
Fix bug #54692 (SQLite3::open() Return Value) by correcting the SQLite3::open()
prototype.
-rw-r--r--ext/sqlite3/sqlite3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c
index 65f4a231dd..d54eb7c567 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)
{