From de2523c848fd5d823fc2fae840806d4d61d96aad Mon Sep 17 00:00:00 2001 From: Xuefer Date: Sun, 10 Apr 2011 13:05:10 +0000 Subject: [PATCH] decompiler: avoid ${ literal being recognized git-svn-id: svn://svn.lighttpd.net/xcache/trunk@733 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- Decompiler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Decompiler.class.php b/Decompiler.class.php index 45a82ca..1d8977f 100644 --- a/Decompiler.class.php +++ b/Decompiler.class.php @@ -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);