Changeset 745 for trunk

Show
Ignore:
Timestamp:
04/14/2011 07:10:42 AM (2 years ago)
Author:
moo
Message:

str() fix

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Decompiler.class.php

    r744 r745  
    132132            return $opstr . str($this->op2, $indent); 
    133133        } 
    134         return $op1 . ' ' . $opstr . ' ' . foldToCodfoldToCode($this->op2, $indent); 
     134        return str($op1) . ' ' . $opstr . ' ' . str($this->op2, $indent); 
    135135    } 
    136136}