diff options
author | Andi Gutmans <andi@php.net> | 2002-10-07 21:58:59 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-10-07 21:58:59 +0000 |
commit | c32bac8fbaca1eb4e561c836badf56e1aac4cccd (patch) | |
tree | 0bfbaab863608f4de2300e45c681e34abf0dfa27 | |
parent | 164188d122e4eb517182920bc975b02e8b101ef4 (diff) | |
download | php-git-c32bac8fbaca1eb4e561c836badf56e1aac4cccd.tar.gz |
- Fix test
-rw-r--r-- | Zend/tests/zend2.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |