From: Andi Gutmans Date: Tue, 5 Nov 2002 19:55:00 +0000 (+0000) Subject: - A couple of updates X-Git-Tag: php-4.3.0RC1~246 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=867519c42024e08ff578d029291d25533cb37a70;p=php - A couple of updates --- diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES index 6e999ef259..71e773b7bb 100644 --- a/Zend/ZEND_CHANGES +++ b/Zend/ZEND_CHANGES @@ -120,7 +120,7 @@ Changes in the Zend Engine 2.0 } function __clone() { - $this->name = $clone->name; + $this->name = $that->name; $this->address = 'New York'; $this->id = self::$id++; } @@ -489,6 +489,8 @@ Changes in the Zend Engine 2.0 print foo::$my_static; ?> + * Static methods (TBD) + * Parameters that are passed by reference to a function may now have default values.