mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
php_error_docref
BUT didn't we decide to disable those functions when not supported instead of displaying an error?
This commit is contained in:
parent
965ecdb3a6
commit
d1b56bf810
1 changed files with 2 additions and 2 deletions
|
@ -2700,7 +2700,7 @@ static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode, int
|
||||||
|
|
||||||
#if !HAVE_GD_STRINGFTEX
|
#if !HAVE_GD_STRINGFTEX
|
||||||
if (extended) {
|
if (extended) {
|
||||||
zend_error(E_WARNING, "%s(): gdImageStringFTEx not supported in this PHP build", get_active_function_name(TSRMLS_C));
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "gdImageStringFTEx not supported in this PHP build");
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -3440,7 +3440,7 @@ static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type )
|
||||||
case PHP_GDIMG_TYPE_GIF:
|
case PHP_GDIMG_TYPE_GIF:
|
||||||
im_org = gdImageCreateFromGif (org);
|
im_org = gdImageCreateFromGif (org);
|
||||||
if (im_org == NULL) {
|
if (im_org == NULL) {
|
||||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s(): Unable to open '%s' Not a valid GIF file", fn_dest);
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to open '%s' Not a valid GIF file", fn_dest);
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue