From: Andi Gutmans Date: Tue, 5 Nov 2002 19:29:46 +0000 (+0000) Subject: - $clone -> $that X-Git-Tag: php-4.3.0RC1~249 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f40e3b8548f838af757c2bd6f4d82caebdfd8be0;p=php - $clone -> $that --- diff --git a/Zend/tests/zend2.php b/Zend/tests/zend2.php index 07d0a766d4..100bdbec95 100644 --- a/Zend/tests/zend2.php +++ b/Zend/tests/zend2.php @@ -264,7 +264,7 @@ Example 8: __clone() function __clone() { - $this->name = $clone->name; + $this->name = $that->name; $this->address = "New York"; $this->id = self::$id++; }