diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-25 15:54:45 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-25 15:54:45 +0000 |
| commit | 102f0f566b930f9c5030df47f198f0e1627ce317 (patch) | |
| tree | 9ef6a5a24d501af431166113f1a1095a6d33d209 /modules/atom/libraries/Gallery_Atom_Entry.php | |
| parent | 2c20fed373e54bfc67f878a1f5d93d0cd2fc146e (diff) | |
Normalize atom url generation
Diffstat (limited to 'modules/atom/libraries/Gallery_Atom_Entry.php')
| -rw-r--r-- | modules/atom/libraries/Gallery_Atom_Entry.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/atom/libraries/Gallery_Atom_Entry.php b/modules/atom/libraries/Gallery_Atom_Entry.php index 57785fd7..e7d0ea8b 100644 --- a/modules/atom/libraries/Gallery_Atom_Entry.php +++ b/modules/atom/libraries/Gallery_Atom_Entry.php @@ -27,10 +27,10 @@ class Gallery_Atom_Entry_Core extends Atom_Entry { parent::__construct("entry"); /* Set feed ID and self link. */ - $this->id(html::specialchars(atom::get_absolute_url())); + $this->id(html::specialchars(url::get_absolute_url())); $this->link() ->rel("self") - ->href(atom::get_absolute_url()); + ->href(url::get_absolute_url()); } public function link() { |
