summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2006-06-30 18:17:38 +0000
committerHannes Magnusson <bjori@php.net>2006-06-30 18:17:38 +0000
commit6910275d5169a8939742a4d6103350a01e35c967 (patch)
tree019a1cf999834347b3b6e358f36f37c05b5f82af
parentbdd4183fbaa56ac4fccf29a1c94e4ecf448f630a (diff)
downloadphp-git-6910275d5169a8939742a4d6103350a01e35c967.tar.gz
MFH reference fixes
-rw-r--r--ext/standard/basic_functions.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 56d0c8277c..2bfa837fd1 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -311,12 +311,12 @@ ZEND_END_ARG_INFO()
static
ZEND_BEGIN_ARG_INFO(arginfo_current, ZEND_SEND_PREFER_REF)
- ZEND_ARG_INFO(1, arg)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, arg)
ZEND_END_ARG_INFO()
static
ZEND_BEGIN_ARG_INFO(arginfo_key, ZEND_SEND_PREFER_REF)
- ZEND_ARG_INFO(1, arg)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, arg)
ZEND_END_ARG_INFO()
static
@@ -609,12 +609,12 @@ ZEND_END_ARG_INFO()
static
ZEND_BEGIN_ARG_INFO_EX(arginfo_array_multisort, ZEND_SEND_PREFER_REF, 0, 1)
- ZEND_ARG_INFO(1, arr1) /* ARRAY_INFO(0, arg1, 0) */
- ZEND_ARG_INFO(1, SORT_ASC_or_SORT_DESC)
- ZEND_ARG_INFO(1, SORT_REGULAR_or_SORT_NUMERIC_or_SORT_STRING)
- ZEND_ARG_INFO(1, arr2)
- ZEND_ARG_INFO(1, SORT_ASC_or_SORT_DESC)
- ZEND_ARG_INFO(1, SORT_REGULAR_or_SORT_NUMERIC_or_SORT_STRING)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, arr1) /* ARRAY_INFO(0, arg1, 0) */
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, SORT_ASC_or_SORT_DESC)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, SORT_REGULAR_or_SORT_NUMERIC_or_SORT_STRING)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, arr2)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, SORT_ASC_or_SORT_DESC)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, SORT_REGULAR_or_SORT_NUMERIC_or_SORT_STRING)
ZEND_END_ARG_INFO()
static
@@ -656,8 +656,8 @@ ZEND_END_ARG_INFO()
static
ZEND_BEGIN_ARG_INFO(arginfo_array_key_exists, ZEND_SEND_PREFER_REF)
- ZEND_ARG_INFO(0, key)
- ZEND_ARG_INFO(1, search)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, key)
+ ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, search)
ZEND_END_ARG_INFO()
static