diff options
| author | Anthony Ferrara <ircmaxell@gmail.com> | 2012-09-12 12:15:33 -0400 |
|---|---|---|
| committer | Anthony Ferrara <ircmaxell@gmail.com> | 2012-09-12 12:15:33 -0400 |
| commit | 7ec80e1a139ca7f43c02728f3fe2424cef0138b6 (patch) | |
| tree | ce29af7103d1aa4217ef5a0c18db99045d7e9068 | |
| parent | 7161c3d2cfde54ce218f20d03684f2a58e1c7627 (diff) | |
| download | php-git-7ec80e1a139ca7f43c02728f3fe2424cef0138b6.tar.gz | |
Fix incorrect arg info required param count for password_hash
| -rw-r--r-- | ext/standard/basic_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index ece64f375f..cf2266c31d 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1855,7 +1855,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_getlastmod, 0) ZEND_END_ARG_INFO() /* }}} */ /* {{{ password.c */ -ZEND_BEGIN_ARG_INFO_EX(arginfo_password_hash, 0, 0, 1) +ZEND_BEGIN_ARG_INFO_EX(arginfo_password_hash, 0, 0, 2) ZEND_ARG_INFO(0, password) ZEND_ARG_INFO(0, algo) ZEND_ARG_INFO(0, options) |
