diff options
author | Jozef Selesi <jozefs@users.sourceforge.net> | 2008-11-23 20:43:47 +0000 |
---|---|---|
committer | Jozef Selesi <jozefs@users.sourceforge.net> | 2008-11-23 20:43:47 +0000 |
commit | 55fc5993f0fbf0a5e4454b4533db20c74a7a9605 (patch) | |
tree | 0aa9115595aa7c4a35be0c3a2ad28ee3b84f540c /modules/atom/helpers/atom.php | |
parent | 02486f2401b072fb3f5f2a50e68afaf2db9368d3 (diff) |
Fix double-escaping in the item comments feed.
Diffstat (limited to 'modules/atom/helpers/atom.php')
-rw-r--r-- | modules/atom/helpers/atom.php | 2 |
1 files changed, 1 insertions, 1 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; } |