summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Ferrara <ircmaxell@gmail.com>2012-09-17 11:10:59 -0400
committerAnthony Ferrara <ircmaxell@gmail.com>2012-09-17 11:10:59 -0400
commit6fd5ba5c8d70ecbd80175a488160f57380d8afee (patch)
tree2383731611c0338df307bf4ec1784369a3608309
parent44c2624f8c7d6bc00f46bc69c77791c2a334cc9a (diff)
downloadphp-git-6fd5ba5c8d70ecbd80175a488160f57380d8afee.tar.gz
Fix arg info for required params passed to needs_rehash
-rw-r--r--ext/standard/basic_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index cf2266c31d..a30579e143 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -1863,7 +1863,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_password_get_info, 0, 0, 1)
ZEND_ARG_INFO(0, hash)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO_EX(arginfo_password_needs_rehash, 0, 0, 1)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_password_needs_rehash, 0, 0, 2)
ZEND_ARG_INFO(0, hash)
ZEND_ARG_INFO(0, algo)
ZEND_ARG_INFO(0, options)