From: Andi Gutmans Date: Mon, 7 Oct 2002 21:58:59 +0000 (+0000) Subject: - Fix test X-Git-Tag: php-4.3.0pre1~95 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c32bac8fbaca1eb4e561c836badf56e1aac4cccd;p=php - Fix test --- diff --git a/Zend/tests/zend2.php b/Zend/tests/zend2.php index 7b6cc7f2e4..07d0a766d4 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); } }