summaryrefslogtreecommitdiff
path: root/utils/modules/events.php
diff options
context:
space:
mode:
authordeva <deva>2010-02-28 13:06:39 +0000
committerdeva <deva>2010-02-28 13:06:39 +0000
commit9cff69d330760c133d2b22c96da7a89e319b2362 (patch)
tree2fcaf78432ed03a092b1b57e9155c0c294c03eab /utils/modules/events.php
parent5b272cd81712a01fceb946682bb99f8402c070df (diff)
Better control of xml enconding... still a lot of testing to do though.
Diffstat (limited to 'utils/modules/events.php')
-rw-r--r--utils/modules/events.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/utils/modules/events.php b/utils/modules/events.php
index cf04734..6e1218f 100644
--- a/utils/modules/events.php
+++ b/utils/modules/events.php
@@ -15,11 +15,10 @@ class Event {
public function write($fp)
{
- fwrite($fp, " <event title=\"" .
- htmlspecialchars($this->title, ENT_QUOTES, "UTF-8") . "\"\n");
- fwrite($fp, " time=\"" . $this->time . "\"\n");
- fwrite($fp, " flyer=\"" . $this->flyer . "\">");
- fwrite($fp, htmlspecialchars($this->description, ENT_QUOTES, "UTF-8"));
+ fwrite($fp, " <event title=\"" .xmlenc($this->title) . "\"\n");
+ fwrite($fp, " time=\"" . xmlenc($this->time) . "\"\n");
+ fwrite($fp, " flyer=\"" . xmlenc($this->flyer) . "\">");
+ fwrite($fp, xmlenc($this->description));
fwrite($fp, " </event>\n");
}