X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/912521ef0711204965aa2319d41c7741bd3f4f4c..89484c06d97cc7d47118ba9bcf6039431d3ff368:/IkiWiki/Plugin/orphans.pm?ds=inline diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index 6ba37615e..39d836a01 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -25,14 +25,15 @@ sub preprocess (@) { #{{{ } my @orphans; + my $discussion=gettext("discussion"); foreach my $page (keys %renderedfiles) { next if $linkedto{$page}; - next unless pagespec_match($page, $params{pages}); + next unless pagespec_match($page, $params{pages}, $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 { length $_ && - ($_ !~ /\/Discussion$/i || ! $config{discussion}) && + ($_ !~ /\/\Q$discussion\E$/i || ! $config{discussion}) && bestlink($page, $_) !~ /^($page|)$/ } @{$links{$page}}; push @orphans, $page;