diff options
author | Marcus Boerger <helly@php.net> | 2003-09-05 20:09:19 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-05 20:09:19 +0000 |
commit | d9d082072c8c1c19cab722ff0a4d9e6b388652ae (patch) | |
tree | 3a415c72964ea7fa5ccbd4277a3af0ac84cfa618 /ext/sqlite/sqlite.c | |
parent | f05525a0ef4dfea3fc9be785670b13548b078d06 (diff) | |
download | php-git-d9d082072c8c1c19cab722ff0a4d9e6b388652ae.tar.gz |
Omitting is also possible here
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index a9ceda7acf..beddf346db 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1773,7 +1773,7 @@ PHP_FUNCTION(sqlite_fetch_object) 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); } } /* }}} */ |