diff options
Diffstat (limited to 'it_syntaxconverter.class')
-rw-r--r-- | it_syntaxconverter.class | 2 |
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(); |