diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 2693e7b16..dcf0980c5 100644 --- a/include/text.php +++ b/include/text.php @@ -2699,7 +2699,7 @@ function stringify_array_elms(&$arr, $escape = false) { */ function stringify_array($arr, $escape = false) { if($arr) { - stringify_array_elms($arr); + stringify_array_elms($arr, $escape); return(implode(',',$arr)); } return EMPTY_STR; |