From: Ilia Alshanetsky Date: Wed, 14 Jun 2006 16:04:13 +0000 (+0000) Subject: E_ERROR -> E_RECOVERABLE_ERROR X-Git-Tag: php-5.2.0RC1~315 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=18870e3afcca33c35c3204b4058704e2f8ea13c1;p=php E_ERROR -> E_RECOVERABLE_ERROR --- 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;