Commit:    29a0efccef0ea3843e1b68546bdc255d5b901746
Author:    Sherif Ramadan <theanomaly...@gmail.com>         Sat, 21 Jul 2012 
19:38:03 -0400
Parents:   11a5afec22e62af1555ceedc41460b96f8c06ed5
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=29a0efccef0ea3843e1b68546bdc255d5b901746

Log:
Fixes mcrypt_ecb not issuing an E_DEPRECATED level notice, despite having been 
deprecated for some time. Please reference bug #62374 as well.

Bugs:
https://bugs.php.net/62374

Changed paths:
  M  ext/mcrypt/mcrypt.c


Diff:
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c
index c573939..20a0f73 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)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to