1
0
Fork 0

Decompiler: f(&$v) no long validate since PHP_5_4

This commit is contained in:
Xuefer 2015-06-29 15:31:45 +08:00
parent c3ed03701b
commit 8c23a1d08c
1 changed files with 1 additions and 1 deletions

View File

@ -1962,7 +1962,7 @@ class Decompiler
case XC_SEND_VAL:
case XC_SEND_REF:
case XC_SEND_VAR: // {{{
$ref = ($opc == XC_SEND_REF ? '&' : '');
$ref = (!ZEND_ENGINE_2_4 && $opc == XC_SEND_REF ? '&' : '');
$EX['argstack'][] = $ref . str($this->getOpVal($op1, $EX));
break;
// }}}