From afeb31af630aef7094eb099c09890553fa0db719 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 8 Jun 2008 16:33:14 -0400 Subject: use rdf:resource for license urls darcs-hash:20080608203314-84dde-6553bea647ce5e712a7615ece83840e1e14a33d4.gz --- lib/rssaction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/rssaction.php b/lib/rssaction.php index 912c14480..a61facd92 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -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'); } -- cgit v1.2.3-54-g00ecf