From 400f46430735624fc2b9ecd59371630e745ca3f8 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sat, 29 Jan 2000 17:49:05 +0000 Subject: [PATCH] Fix ``'s --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 9f583761d86..3bbacfe2a72 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1649,7 +1649,7 @@ void do_shell_exec(znode *result, znode *cmd CLS_DC) opline = get_next_op(CG(active_op_array) CLS_CC); opline->opcode = ZEND_DO_FCALL; opline->result.u.var = get_temporary_variable(CG(active_op_array)); - opline->result.op_type = IS_TMP_VAR; + opline->result.op_type = IS_VAR; opline->op1.u.constant.value.str.val = estrndup("shell_exec",sizeof("shell_exec")-1); opline->op1.u.constant.value.str.len = sizeof("shell_exec")-1; INIT_PZVAL(&opline->op1.u.constant);