From 9cff69d330760c133d2b22c96da7a89e319b2362 Mon Sep 17 00:00:00 2001 From: deva <deva> Date: Sun, 28 Feb 2010 13:06:39 +0000 Subject: Better control of xml enconding... still a lot of testing to do though. --- utils/convert.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'utils/convert.php') diff --git a/utils/convert.php b/utils/convert.php index 4471e8f..70fab51 100644 --- a/utils/convert.php +++ b/utils/convert.php @@ -1,5 +1,10 @@ <?php +function xmlenc($message) +{ + return htmlspecialchars($message, ENT_QUOTES, "UTF-8"); +} + function convert($message) { $message = stripslashes($message); @@ -14,7 +19,7 @@ function convert_array($vs) if(sizeof($vs)) { foreach($vs as $k => $v) { - $vars[$k] = convert($v); + $vars[$k] = stripslashes($v); } } -- cgit v1.2.3