summaryrefslogtreecommitdiff
path: root/modules/atom/libraries/Gallery_Atom_Entry.php
diff options
context:
space:
mode:
authorJozef Selesi <jozefs@users.sourceforge.net>2008-11-23 20:43:47 +0000
committerJozef Selesi <jozefs@users.sourceforge.net>2008-11-23 20:43:47 +0000
commit55fc5993f0fbf0a5e4454b4533db20c74a7a9605 (patch)
tree0aa9115595aa7c4a35be0c3a2ad28ee3b84f540c /modules/atom/libraries/Gallery_Atom_Entry.php
parent02486f2401b072fb3f5f2a50e68afaf2db9368d3 (diff)
Fix double-escaping in the item comments feed.
Diffstat (limited to 'modules/atom/libraries/Gallery_Atom_Entry.php')
-rw-r--r--modules/atom/libraries/Gallery_Atom_Entry.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/atom/libraries/Gallery_Atom_Entry.php b/modules/atom/libraries/Gallery_Atom_Entry.php
index 4b035eed..57785fd7 100644
--- a/modules/atom/libraries/Gallery_Atom_Entry.php
+++ b/modules/atom/libraries/Gallery_Atom_Entry.php
@@ -27,7 +27,7 @@ class Gallery_Atom_Entry_Core extends Atom_Entry {
parent::__construct("entry");
/* Set feed ID and self link. */
- $this->id(atom::get_absolute_url());
+ $this->id(html::specialchars(atom::get_absolute_url()));
$this->link()
->rel("self")
->href(atom::get_absolute_url());