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 bca1fb8..a40b44b 100644 --- a/it_syntaxconverter.class +++ b/it_syntaxconverter.class @@ -415,7 +415,7 @@ function text($tokens) foreach ($data as $element) $list[] .= $this->text($element); - $result .= "(" . join(",", $list) . ")"; + $result .= "(" . implode(",", $list) . ")"; } else $result .= $data; |