aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-14 17:02:30 -0800
committerfriendica <info@friendica.com>2012-11-14 17:02:30 -0800
commit0ace91bd0e53b014cdd0e16616bb209ba77c96ad (patch)
treea9297c5ed5cb5c2caec5b95e54ced992e2dafe88 /include/text.php
parent6ac5e048b3dc5206331186bab571e02f75c3454c (diff)
downloadvolse-hubzilla-0ace91bd0e53b014cdd0e16616bb209ba77c96ad.tar.gz
volse-hubzilla-0ace91bd0e53b014cdd0e16616bb209ba77c96ad.tar.bz2
volse-hubzilla-0ace91bd0e53b014cdd0e16616bb209ba77c96ad.zip
starting the big notifier cleanup
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 4458cdaa4..7f036f502 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1744,4 +1744,8 @@ function get_rel_link($j,$rel) {
function magic_link($s) {
return $s;
}
- \ No newline at end of file
+
+function stringify_array_elms(&$arr) {
+ for($x = 0; $x < count($arr); $x ++)
+ $arr[$x] = "'" . $arr[$x] . "'";
+}