diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-01 23:58:56 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-01 23:58:56 -0500 |
commit | 31bb9d07dcaf72ef3c913728464c1a86aa1238cb (patch) | |
tree | 44764aeda6df391d46de7ec8bc008b3b97f36113 /lib | |
parent | 0464a1020242a6284b1eed644ca0f3ab5a55a4a0 (diff) |
cleanup whitespace in rssaction
darcs-hash:20081202045856-5ed1f-3b14fafd709eb5f4e1c4ea74bce067a1429f03d7.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rssaction.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index 5a430282f..2f6fa005a 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -29,7 +29,7 @@ class Rss10Action extends Action { function is_readonly() { return true; } - + function handle($args) { parent::handle($args); $limit = (int) $this->trimmed('limit'); @@ -154,9 +154,9 @@ class Rss10Action extends Action { foreach ($this->creators as $uri => $profile) { $id = $profile->id; $nickname = $profile->nickname; - + common_element_start('sioc:User', array('rdf:about' => $uri)); - common_element('foaf:nick', NULL, $nickname); + common_element('foaf:nick', NULL, $nickname); if ($profile->fullname) { common_element('foaf:name', NULL, $profile->fullname); } @@ -166,10 +166,10 @@ class Rss10Action extends Action { common_element_end('sioc:User'); } } - + function init_rss() { $channel = $this->get_channel(); - + header('Content-Type: application/rdf+xml'); common_start_xml(); @@ -190,7 +190,7 @@ class Rss10Action extends Action { 'xmlns:laconica' => 'http://laconi.ca/ont/', 'xmlns' => 'http://purl.org/rss/1.0/')); - + common_element_start('sioc:Site', array('rdf:about' => common_root_url())); common_element('sioc:name', NULL, common_config('site', 'name')); common_element_start('sioc:container_of'); |