correct element name and namespace for sitemapactions

This commit is contained in:
Evan Prodromou 2010-04-10 10:03:37 -04:00
parent 0a04f9d49d
commit d65a65756b
1 changed files with 2 additions and 2 deletions

View File

@ -56,13 +56,13 @@ class SitemapAction extends Action
header('Content-Type: text/xml; charset=UTF-8');
$this->startXML();
$this->elementStart('sitemap');
$this->elementStart('urlset', array('xmlns' => 'http://www.sitemaps.org/schemas/sitemap/0.9'));
while (list($url, $lm, $cf, $p) = $this->nextUrl()) {
$this->showUrl($url, $lm, $cf, $p);
}
$this->elementEnd('sitemap');
$this->elementEnd('urlset');
$this->endXML();
}