summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/atom/helpers/atom.php2
-rw-r--r--modules/atom/libraries/Gallery_Atom_Entry.php2
-rw-r--r--modules/atom/libraries/Gallery_Atom_Feed.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/atom/helpers/atom.php b/modules/atom/helpers/atom.php
index fed15eb7..d4b895e5 100644
--- a/modules/atom/helpers/atom.php
+++ b/modules/atom/helpers/atom.php
@@ -39,7 +39,7 @@ class atom_Core {
*/
public static function get_absolute_url() {
$base_url = atom::get_base_url();
- $absolute_url = html::specialchars($base_url . url::current(true));
+ $absolute_url = $base_url . url::current(true);
return $absolute_url;
}
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());
diff --git a/modules/atom/libraries/Gallery_Atom_Feed.php b/modules/atom/libraries/Gallery_Atom_Feed.php
index 31f93ec6..ff908682 100644
--- a/modules/atom/libraries/Gallery_Atom_Feed.php
+++ b/modules/atom/libraries/Gallery_Atom_Feed.php
@@ -27,7 +27,7 @@ class Gallery_Atom_Feed_Core extends Atom_Feed {
parent::__construct("feed");
/* 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());