From: Sherif Ramadan Date: Sat, 21 Jul 2012 23:38:03 +0000 (-0400) Subject: Fixes mcrypt_ecb not issuing an E_DEPRECATED level notice, despite having been deprec... X-Git-Tag: php-5.5.0alpha1~20^2~117^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29a0efccef0ea3843e1b68546bdc255d5b901746;p=php Fixes mcrypt_ecb not issuing an E_DEPRECATED level notice, despite having been deprecated for some time. Please reference bug #62374 as well. --- diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index c573939589..20a0f73b18 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -238,7 +238,7 @@ ZEND_END_ARG_INFO() /* }}} */ const zend_function_entry mcrypt_functions[] = { /* {{{ */ - PHP_FE(mcrypt_ecb, arginfo_mcrypt_ecb) + PHP_DEP_FE(mcrypt_ecb, arginfo_mcrypt_ecb) PHP_FE(mcrypt_cbc, arginfo_mcrypt_cbc) PHP_FE(mcrypt_cfb, arginfo_mcrypt_cfb) PHP_FE(mcrypt_ofb, arginfo_mcrypt_ofb)