summaryrefslogtreecommitdiff
path: root/it_syntaxconverter.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_syntaxconverter.class')
-rw-r--r--it_syntaxconverter.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_syntaxconverter.class b/it_syntaxconverter.class
index f37b60d..6ec8849 100644
--- a/it_syntaxconverter.class
+++ b/it_syntaxconverter.class
@@ -49,7 +49,7 @@ function it_syntaxconverter($string, $mode = "old")
$this->input = $string;
$this->mode = $mode;
- $this->tokens = token_get_all($this->input);
+ $this->tokens = @token_get_all($this->input);
$this->count = count($this->tokens);
$this->position = 0;
$this->old = $this->parse();