diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-24 22:08:27 -0800 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-24 22:08:27 -0800 |
commit | e2a965c999e1d8096195d063c808a15759ecf5c6 (patch) | |
tree | b52d9c6cd34c8a9924dbf5f51f8a2530fdc606d9 /lib/rssaction.php | |
parent | 40928cd27a5747c416dbd3724fb2ea8479f37a2e (diff) |
Rss10Action::showImage() was trying to call pre-uiredesign XML output functions
Diffstat (limited to 'lib/rssaction.php')
-rw-r--r-- | lib/rssaction.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index f19c8e1c5..2bd7f1f19 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -178,11 +178,11 @@ class Rss10Action extends Action $image = $this->getImage(); if ($image) { $channel = $this->getChannel(); - common_element_start('image', array('rdf:about' => $image)); - common_element('title', null, $channel['title']); - common_element('link', null, $channel['link']); - common_element('url', null, $image); - common_element_end('image'); + $this->elementStart('image', array('rdf:about' => $image)); + $this->element('title', null, $channel['title']); + $this->element('link', null, $channel['link']); + $this->element('url', null, $image); + $this->elementEnd('image'); } } |