- Remove the is_ref =1 from the push() function.

This commit is contained in:
Andi Gutmans 1999-06-06 15:00:49 +00:00
parent a821a185e4
commit d5dc2cd22c

View file

@ -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);