decompiler: avoid ${ literal being recognized
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@733 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.0
parent
9d6ca9871d
commit
de2523c848
|
@ -1014,7 +1014,7 @@ class Decompiler
|
|||
$rvalue = '$' . substr($rvalue, 1, -1);
|
||||
}
|
||||
else {
|
||||
$rvalue = "${" . $rvalue . "}";
|
||||
$rvalue = '${' . $rvalue . '}';
|
||||
}
|
||||
if ($op2['EA.type'] == ZEND_FETCH_STATIC_MEMBER) {
|
||||
$class = $this->getOpVal($op2, $EX);
|
||||
|
|
Loading…
Reference in New Issue