From c32bac8fbaca1eb4e561c836badf56e1aac4cccd Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Mon, 7 Oct 2002 21:58:59 +0000 Subject: [PATCH] - Fix test --- 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 7b6cc7f2e48..07d0a766d4b 100644 --- a/Zend/tests/zend2.php +++ b/Zend/tests/zend2.php @@ -168,7 +168,7 @@ Example 5: Regular object method using both local and global functions function length_of_hello_world() { - $str = get_hello_world(); + $str = $this->get_hello_world(); return strlen($str); } }