Fix double-escaping in the item comments feed.

This commit is contained in:
Jozef Selesi
2008-11-23 20:43:47 +00:00
parent 02486f2401
commit 55fc5993f0
3 changed files with 3 additions and 3 deletions
@@ -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());