From 3e2fa2781aa8f1f6bfa342fce937691b0ffb73bc Mon Sep 17 00:00:00 2001 From: Mathieu Kooiman Date: Wed, 8 Nov 2000 18:41:22 +0000 Subject: [PATCH] E_WARNING into E_ERROR, Last commit (today)! I PROMISE! :-) --- ext/gd/gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 7a150bcaf7..ac625b7726 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -602,7 +602,7 @@ PHP_FUNCTION (imagecreatefromstring) ZEND_REGISTER_RESOURCE(return_value, im, GDG (le_gd)); #else - php_error(E_WARNING, "ImageCreateFromString: Only available with GD 1.5+"); + php_error(E_ERROR, "ImageCreateFromString: Only available with GD 1.5+"); #endif } /* }}} */ -- 2.50.1