summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-10-07 21:58:59 +0000
committerAndi Gutmans <andi@php.net>2002-10-07 21:58:59 +0000
commitc32bac8fbaca1eb4e561c836badf56e1aac4cccd (patch)
tree0bfbaab863608f4de2300e45c681e34abf0dfa27
parent164188d122e4eb517182920bc975b02e8b101ef4 (diff)
downloadphp-git-c32bac8fbaca1eb4e561c836badf56e1aac4cccd.tar.gz
- Fix test
-rw-r--r--Zend/tests/zend2.php2
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);
}
}