diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-25 18:07:55 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-25 18:07:55 +0100 |
commit | f06d5eff1028b82ebcce7753ad864dab070d6779 (patch) | |
tree | b655db98c6abd7a20d57fb9ccace82824ddd3392 /lib | |
parent | 0d34cd24abc0329aae7d408b3bab3d692caaa045 (diff) | |
parent | 688d38b1015456ae28cf0ef96bab777a47d5a97a (diff) |
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
Diffstat (limited to 'lib')
-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'); } } |