diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-06-14 16:04:13 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-06-14 16:04:13 +0000 |
commit | 18870e3afcca33c35c3204b4058704e2f8ea13c1 (patch) | |
tree | 5057f2152971a550dde4d771d2b12d81a48730ac /ext/sqlite/sqlite.c | |
parent | d7fd19b7ff8b9557c3b1d7f45bdf3f3829d34c2a (diff) | |
download | php-git-18870e3afcca33c35c3204b4058704e2f8ea13c1.tar.gz |
E_ERROR -> E_RECOVERABLE_ERROR
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 30db0e0d7f..73a57c91ca 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1005,7 +1005,7 @@ zend_object_iterator *sqlite_get_iterator(zend_class_entry *ce, zval *object, in sqlite_object *obj = (sqlite_object*) zend_object_store_get_object(object TSRMLS_CC); if (by_ref) { - zend_error(E_ERROR, "An iterator cannot be used with foreach by reference"); + zend_error(E_RECOVERABLE_ERROR, "An iterator cannot be used with foreach by reference"); } object->refcount++; iterator->it.data = (void*)object; |