diff options
author | Mario <mario@mariovavti.com> | 2023-06-29 11:43:02 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-06-29 11:43:02 +0000 |
commit | 9f6844ec30612fe2b1f0af4e52018a432698b226 (patch) | |
tree | a6aac12da258b4bf2ca07d99fbb3c3a78e89b9db /include/text.php | |
parent | c2952aa803cc7c7c03786b285e9f2b1f24b98c72 (diff) | |
download | volse-hubzilla-9f6844ec30612fe2b1f0af4e52018a432698b226.tar.gz volse-hubzilla-9f6844ec30612fe2b1f0af4e52018a432698b226.tar.bz2 volse-hubzilla-9f6844ec30612fe2b1f0af4e52018a432698b226.zip |
pass $escape to stringify_array_elms()
Diffstat (limited to 'include/text.php')
-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; |