X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/58141a0ebcdf3313a83af712b83f8acd1c08aa3b..a651a28e69f429f932e092b9ce67f5744a508000:/IkiWiki/Plugin/orphans.pm diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index 39d836a01..65d5e3e9b 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -26,7 +26,7 @@ sub preprocess (@) { #{{{ my @orphans; my $discussion=gettext("discussion"); - foreach my $page (keys %renderedfiles) { + foreach my $page (keys %pagesources) { next if $linkedto{$page}; next unless pagespec_match($page, $params{pages}, $params{page}); # If the page has a link to some other page, it's @@ -40,7 +40,15 @@ sub preprocess (@) { #{{{ } return gettext("All pages are linked to by other pages.") unless @orphans; - return "\n"; + return "\n"; } # }}} 1