aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-06-29 11:43:02 +0000
committerMario <mario@mariovavti.com>2023-06-29 11:43:02 +0000
commit9f6844ec30612fe2b1f0af4e52018a432698b226 (patch)
treea6aac12da258b4bf2ca07d99fbb3c3a78e89b9db
parentc2952aa803cc7c7c03786b285e9f2b1f24b98c72 (diff)
downloadvolse-hubzilla-9f6844ec30612fe2b1f0af4e52018a432698b226.tar.gz
volse-hubzilla-9f6844ec30612fe2b1f0af4e52018a432698b226.tar.bz2
volse-hubzilla-9f6844ec30612fe2b1f0af4e52018a432698b226.zip
pass $escape to stringify_array_elms()
-rw-r--r--include/text.php2
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;