summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
}