diff options
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 6 |
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] . "'"; +} |