Skip to content

Commit 29a0efc

Browse files
committed
Fixes mcrypt_ecb not issuing an E_DEPRECATED level notice, despite having been deprecated for some time. Please reference bug #62374 as well.
1 parent 11a5afe commit 29a0efc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mcrypt/mcrypt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ ZEND_END_ARG_INFO()
238238
/* }}} */
239239

240240
const zend_function_entry mcrypt_functions[] = { /* {{{ */
241-
PHP_FE(mcrypt_ecb, arginfo_mcrypt_ecb)
241+
PHP_DEP_FE(mcrypt_ecb, arginfo_mcrypt_ecb)
242242
PHP_FE(mcrypt_cbc, arginfo_mcrypt_cbc)
243243
PHP_FE(mcrypt_cfb, arginfo_mcrypt_cfb)
244244
PHP_FE(mcrypt_ofb, arginfo_mcrypt_ofb)

0 commit comments

Comments
 (0)