summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-07-06 22:29:06 +0000
committerAndi Gutmans <andi@php.net>2000-07-06 22:29:06 +0000
commitaf5d38214b3dff1c97da70fe81be2e6ea384ead5 (patch)
tree5c8f0ad934fcbc6e2616cccb26261f8c27dcbcdb
parent2787a746f4b621b23ed053430d6298f364cbe47f (diff)
downloadphp-git-af5d38214b3dff1c97da70fe81be2e6ea384ead5.tar.gz
- One more fix for the latest patch
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index 5b9612b123..778ab6d564 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -581,7 +581,7 @@ zend_bool is_method_call(CLS_D)
cur = cur->next;
}
cur_opline = (zend_op *)cur->data;
- if (cur_opline->opcode == ZEND_FETCH_OBJ_R) {
+ if (cur_opline->opcode == ZEND_FETCH_OBJ_W) {
return 1;
}
return 0;