summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2014-07-25 13:15:27 +0200
committerFerenc Kovacs <tyrael@php.net>2014-07-25 13:15:27 +0200
commita68ef0a117b0e7da4fe9ab1ee098c6e5e0553c4a (patch)
tree5c39d51ae79001dd8608b96e2a3178ceb8fdb9a1
parent3345722354196b51a8518254f54938b627141384 (diff)
downloadphp-git-a68ef0a117b0e7da4fe9ab1ee098c6e5e0553c4a.tar.gz
Revert "Fix bug #66568: the second arg for unserialize is optional." as we already reverted the introduction of the second arg.
This reverts commit aefc8f22b35999624f3a579696cf68b389f41ae8. Conflicts: NEWS
-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 62ac0d1c6d..fed2a4f0fb 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -2647,7 +2647,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_serialize, 0)
ZEND_ARG_INFO(0, var)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO_EX(arginfo_unserialize, 0, 0, 1)
+ZEND_BEGIN_ARG_INFO(arginfo_unserialize, 0)
ZEND_ARG_INFO(0, variable_representation)
ZEND_END_ARG_INFO()