summaryrefslogtreecommitdiff
path: root/classes/User_group.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-03-12 01:12:30 +0000
committerZach Copley <zach@status.net>2010-03-12 01:12:30 +0000
commit78f0d6bbd21ed84733e960201c4652e69c565450 (patch)
tree22cbb14401301be9a2cba6927c21aee3c4afaab0 /classes/User_group.php
parent7cdcb89dc9d8dcc04848928c5b765f99566d2a4d (diff)
Scrub all atom output with common_xml_safe_str()
Diffstat (limited to 'classes/User_group.php')
-rw-r--r--classes/User_group.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/classes/User_group.php b/classes/User_group.php
index f29594502..63a407b4c 100644
--- a/classes/User_group.php
+++ b/classes/User_group.php
@@ -379,7 +379,7 @@ class User_group extends Memcached_DataObject
}
$xs->element('title', null, $this->nickname);
- $xs->element('summary', null, $this->description);
+ $xs->element('summary', null, common_xml_safe_str($this->description));
$xs->element('link', array('rel' => 'alternate',
'href' => $this->permalink()));
@@ -389,7 +389,11 @@ class User_group extends Memcached_DataObject
$xs->element('published', null, common_date_w3dtf($this->created));
$xs->element('updated', null, common_date_w3dtf($this->modified));
- $xs->element('content', array('type' => 'html'), $this->description);
+ $xs->element(
+ 'content',
+ array('type' => 'html'),
+ common_xml_safe_str($this->description)
+ );
$xs->elementEnd('entry');