1
0
Fork 0

decompiler: avoid ${ literal being recognized

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@733 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 2011-04-10 13:05:10 +00:00
parent 9d6ca9871d
commit de2523c848
1 changed files with 1 additions and 1 deletions

View File

@ -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);