From 9f6844ec30612fe2b1f0af4e52018a432698b226 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 29 Jun 2023 11:43:02 +0000 Subject: pass $escape to stringify_array_elms() --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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; -- cgit v1.2.3