]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/orphans.pm
inline: The optimisation in 2.41 broke nested inlines. Detect those and avoid overopt...
[ikiwiki.git] / IkiWiki / Plugin / orphans.pm
index f221954b807fedf1eb8612ab13a5a333702dbfe3..0f96b9397445ea6f15b4b82cd2bded46143f6aaf 100644 (file)
@@ -4,7 +4,7 @@ package IkiWiki::Plugin::orphans;
 
 use warnings;
 use strict;
-use IkiWiki;
+use IkiWiki 2.00;
 
 sub import { #{{{
        hook(type => "preprocess", id => "orphans", call => \&preprocess);
@@ -26,9 +26,9 @@ sub preprocess (@) { #{{{
        
        my @orphans;
        my $discussion=gettext("discussion");
-       foreach my $page (keys %renderedfiles) {
-               next if $linkedto{$page};
-               next unless pagespec_match($page, $params{pages}, $params{page});
+       foreach my $page (keys %pagesources) {
+               next if $linkedto{$page} || $page eq 'index';
+               next unless pagespec_match($page, $params{pages}, location => $params{page});
                # If the page has a link to some other page, it's
                # indirectly linked to a page via that page's backlinks.
                next if grep {