X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/8051316904d13de3e467f01ebaeacaa5d8efb1b6..4663f364bbc220bbdbf03582765b6d82f0bddc46:/IkiWiki/Plugin/mirrorlist.pm

diff --git a/IkiWiki/Plugin/mirrorlist.pm b/IkiWiki/Plugin/mirrorlist.pm
index eb273561d..aab60c435 100644
--- a/IkiWiki/Plugin/mirrorlist.pm
+++ b/IkiWiki/Plugin/mirrorlist.pm
@@ -12,9 +12,13 @@ sub import { #{{{
 
 sub getsetup () { #{{{
 	return
+		plugin => {
+			safe => 1,
+			rebuild => 1,
+		},
 		mirrorlist => {
 			type => "string",
-			default => {},
+			example => {},
 			description => "list of mirrors",
 			safe => 1,
 			rebuild => 1,
@@ -25,8 +29,11 @@ sub pagetemplate (@) { #{{{
 	my %params=@_;
         my $template=$params{template};
 	
-	$template->param(extrafooter => mirrorlist($params{page}))
-		if $template->query(name => "extrafooter");
+	if ($template->query(name => "extrafooter")) {
+		my $value=$template->param("extrafooter");
+		$value.=mirrorlist($params{page});
+		$template->param(extrafooter => $value);
+	}
 } # }}}
 
 sub mirrorlist ($) { #{{{