From: Ilia Alshanetsky Date: Wed, 5 Jul 2006 17:38:14 +0000 (+0000) Subject: E_ERROR > E_RECOVERABLE_ERROR X-Git-Tag: php-5.2.0RC1~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=278dc574f2bcabe8e65aea489a4fc4e2d0cd1d21;p=php E_ERROR > E_RECOVERABLE_ERROR --- diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c index 1e05f3d556..eafd3a3850 100644 --- a/ext/standard/php_fopen_wrapper.c +++ b/ext/standard/php_fopen_wrapper.c @@ -171,7 +171,7 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, ch path += 11; max_memory = strtol(path, NULL, 10); if (max_memory < 0) { - php_error_docref(NULL TSRMLS_CC, E_ERROR, "Max memory must be >= 0"); + php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Max memory must be >= 0"); return NULL; } }