diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-08-21 15:21:10 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-08-21 15:21:10 +0200 |
commit | 02d19479288df6188867bdc2eadfbd0a5562352c (patch) | |
tree | 4fa76aa959d0efb8efc71bee5c9ec4f20c2b3729 /Visitor | |
parent | bed337bd3b89c120c4ab1363b5b3d1dfd19226db (diff) | |
download | Praspel-02d19479288df6188867bdc2eadfbd0a5562352c.zip Praspel-02d19479288df6188867bdc2eadfbd0a5562352c.tar.gz Praspel-02d19479288df6188867bdc2eadfbd0a5562352c.tar.bz2 |
Fix \old(e).
Diffstat (limited to 'Visitor')
-rw-r--r-- | Visitor/Interpreter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Visitor/Interpreter.php b/Visitor/Interpreter.php index 26c1b50..5de4848 100644 --- a/Visitor/Interpreter.php +++ b/Visitor/Interpreter.php @@ -407,7 +407,7 @@ class Interpreter implements \Hoa\Visitor\Visit { case '#old': return '\old(' . - $element->getChild(0)->accept($this, $handle, $eldnah) . + $element->getChild(0)->accept($this, $handle, false) . ')'; break; |