Update of /cvsroot/phpwiki/phpwiki/lib/plugin
In directory usw-pr-cvs1:/tmp/cvs-serv30103/lib/plugin
Modified Files:
RecentChanges.php
Log Message:
Minor fixes so that generated RSS 1.0 passes validation at
http://feeds.archive.org/validator/
To wit:
Use 'description' rather than 'dc:description' for channel
description.
Give absolute URL to image (icon).
Index: RecentChanges.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/RecentChanges.php,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -2 -b -p -d -r1.67 -r1.68
--- RecentChanges.php 12 Oct 2002 09:47:05 -0000 1.67
+++ RecentChanges.php 30 Oct 2002 23:14:28 -0000 1.68
@@ -468,5 +468,5 @@ extends _RecentChanges_Formatter
global $Theme;
- $img_url = $Theme->getImageURL('logo');
+ $img_url = SERVER_URL . $Theme->getImageURL('logo');
if (!$img_url)
return false;
@@ -490,6 +490,6 @@ extends _RecentChanges_Formatter
return array('title' => WIKI_NAME,
- 'dc:description' => _("RecentChanges"),
'link' => $rc_url,
+ 'description' => _("RecentChanges"),
'dc:date' => Iso8601DateTime(time()));
|