diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-12-29 21:59:39 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-12-29 21:59:39 +0000 |
commit | 5c32e974aaf38271cbcc3edc29198cf627ca242f (patch) | |
tree | a8455b8a435c49bb7e49ff3ec32e7a0fca724fdb | |
parent | 25aeeb5e256b7b39e5ecbdd5bd8ba239affa005b (diff) | |
download | php-git-5c32e974aaf38271cbcc3edc29198cf627ca242f.tar.gz |
Not a fatal error.
-rw-r--r-- | ext/gd/gd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 5aaaf5cf52..7a171c7836 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -3402,7 +3402,7 @@ PHP_FUNCTION(imagepsextendfont) T1_DeleteAllSizes(*f_ind); if (Z_DVAL_PP(ext) <= 0) { - php_error_docref(NULL TSRMLS_CC, E_ERROR, "Second parameter %f out of range (must be > 0)", Z_DVAL_PP(ext)); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Second parameter %f out of range (must be > 0)", Z_DVAL_PP(ext)); RETURN_FALSE; } |