From f40e3b8548f838af757c2bd6f4d82caebdfd8be0 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Tue, 5 Nov 2002 19:29:46 +0000 Subject: [PATCH] - $clone -> $that --- Zend/tests/zend2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; } -- 2.50.1