Index: IkiWiki/Plugin/inline.pm
===================================================================
--- IkiWiki/Plugin/inline.pm	(revision 1229)
+++ IkiWiki/Plugin/inline.pm	(working copy)
@@ -40,6 +40,12 @@
 	if (! exists $params{show} && ! $archive) {
 		$params{show}=10;
 	}
+	my $desc;
+	if (exists $params{description}) {
+		$desc = $params{description} 
+	} else {
+		$desc = $config{wikiname};
+	}
 
 	my @list;
 	foreach my $page (keys %pagesources) {
@@ -124,7 +130,7 @@
 	# only supports listing one file per page.
 	if ($config{rss} && $rss) {
 		writefile(rsspage($params{page}), $config{destdir},
-			genrss($params{page}, @list));
+			genrss($desc, $params{page}, @list));
 		$toping{$params{page}}=1 unless $config{rebuild};
 	}
 	
@@ -178,7 +184,8 @@
 	return $page.".rss";
 } #}}}
 
-sub genrss ($@) { #{{{
+sub genrss ($$@) { #{{{
+	my $desc = shift;
 	my $page=shift;
 	my @pages=@_;
 	
@@ -213,6 +220,7 @@
 		wikiname => $config{wikiname},
 		pageurl => $url,
 		content => $content,
+		rssdesc => $desc,
 	);
 	run_hooks(pagetemplate => sub {
 		shift->(page => $page, destpage => $page,
Index: templates/rsspage.tmpl
===================================================================
--- templates/rsspage.tmpl	(revision 1229)
+++ templates/rsspage.tmpl	(working copy)
@@ -4,7 +4,7 @@
 <channel>
 <title><TMPL_VAR TITLE ESCAPE=HTML></title>
 <link><TMPL_VAR PAGEURL></link>
-<description><TMPL_VAR WIKINAME ESCAPE=HTML></description>
+<description><TMPL_VAR RSSDESC ESCAPE=HTML></description>
 <TMPL_VAR CONTENT>
 </channel>
 </rss>
Index: doc/plugins/inline.mdwn
===================================================================
--- doc/plugins/inline.mdwn	(revision 1229)
+++ doc/plugins/inline.mdwn	(working copy)
@@ -27,3 +27,5 @@
   if raw is set to "yes", the page will be included raw, without additional
   markup around it, as if it were a literal part of the source of the 
   inlining page.
+* `description` - Sets the description of the rss feed if one is generated.
+  Defaults to the name of the wiki.
