diff options
| author | Andi Gutmans <andi@php.net> | 1999-06-06 15:00:49 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 1999-06-06 15:00:49 +0000 |
| commit | d5dc2cd22cfc2caef02673bfd52bf90971bc674e (patch) | |
| tree | c08e93cb6d838714904ffd4b0ed7fb25b28f9fa6 | |
| parent | a821a185e42c3454df0eb19568935e1290cb3974 (diff) | |
| download | php-git-d5dc2cd22cfc2caef02673bfd52bf90971bc674e.tar.gz | |
- Remove the is_ref =1 from the push() function.
| -rw-r--r-- | ext/standard/basic_functions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 8a5047327d..0fb1571edb 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -2553,7 +2553,6 @@ PHP_FUNCTION(push) and add it to the end of the array */ for (i=1; i<argc; i++) { new_var = args[i]; - new_var->is_ref = 1; new_var->refcount++; zend_hash_next_index_insert(stack->value.ht, &new_var, sizeof(zval *), NULL); |
