]> granicus.if.org Git - php/commitdiff
- A couple of updates
authorAndi Gutmans <andi@php.net>
Tue, 5 Nov 2002 19:55:00 +0000 (19:55 +0000)
committerAndi Gutmans <andi@php.net>
Tue, 5 Nov 2002 19:55:00 +0000 (19:55 +0000)
Zend/ZEND_CHANGES

index 6e999ef259e320be1a795d043e4c3eabee278dc6..71e773b7bbc4e64baca8448cd808a6f6a5a3b58b 100644 (file)
@@ -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.