use rdf:resource for license urls

darcs-hash:20080608203314-84dde-6553bea647ce5e712a7615ece83840e1e14a33d4.gz
This commit is contained in:
Evan Prodromou 2008-06-08 16:33:14 -04:00
parent a00b9c0fdc
commit afeb31af63

View File

@ -77,7 +77,7 @@ class Rss10Action extends Action {
common_element('title', NULL, $channel['title']);
common_element('link', NULL, $channel['link']);
common_element('description', NULL, $channel['description']);
common_element('cc:licence', NULL, $config['license']['url']);
common_element('cc:licence', array('rdf:resource' => $config['license']['url']));
if ($image) {
common_element('image', array('rdf:resource' => $image));
@ -116,7 +116,7 @@ class Rss10Action extends Action {
common_element('link', NULL, $nurl);
common_element('description', NULL, $notice->content);
common_element('dc:date', NULL, common_date_w3dtf($notice->created));
common_element('cc:licence', NULL, $config['license']['url']);
common_element('cc:licence', array('rdf:resource' => $config['license']['url']));
common_element_end('item');
}