aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-27 01:54:52 -0700
committerFriendika <info@friendika.com>2011-10-27 01:54:52 -0700
commitabe96155b42f0f824d05d08126d0ced0d3c5ab38 (patch)
tree895905f32e79c1a46e7f124b667458ea4d02dc14 /include/text.php
parent31502207bd8361a5fa27cb10ea037e4cca5a5678 (diff)
downloadvolse-hubzilla-abe96155b42f0f824d05d08126d0ced0d3c5ab38.tar.gz
volse-hubzilla-abe96155b42f0f824d05d08126d0ced0d3c5ab38.tar.bz2
volse-hubzilla-abe96155b42f0f824d05d08126d0ced0d3c5ab38.zip
hmmm - why won't poco xml work
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index e0f38a3a0..8ada179dc 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1052,4 +1052,13 @@ function html2bb_video($s) {
'[vimeo]$2[/vimeo]', $s);
return $s;
-} \ No newline at end of file
+}
+
+/**
+ * apply xmlify() to all values of array $val, recursively
+ */
+function array_xmlify($val){
+ if (is_bool($val)) return $val?"true":"false";
+ if (is_array($val)) return array_map('array_xmlify', $val);
+ return xmlify((string) $val);
+}