diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-10 00:51:43 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-10 00:51:43 +0000 |
commit | 7afb843a007a3a5f15cf64a36364ceffd8440047 (patch) | |
tree | 43528dab80cd9fd464a4c819627d92a934a73c6e /IkiWiki/Plugin/orphans.pm | |
parent | 88ffeae6eee4214cd96167b0f2ea646437a2bf23 (diff) | |
download | ikiwiki-7afb843a007a3a5f15cf64a36364ceffd8440047.tar ikiwiki-7afb843a007a3a5f15cf64a36364ceffd8440047.tar.gz |
use pagesources rather than renderedfiles to get the list of pages
Diffstat (limited to 'IkiWiki/Plugin/orphans.pm')
-rw-r--r-- | IkiWiki/Plugin/orphans.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index f221954b8..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 |