my @pages=@_;
# Special case for unsaved attachments.
- @pages=grep {
- if (IkiWiki::Plugin::attachment->can("is_held_attachment")) {
- my $f=IkiWiki::Plugin::attachment::is_held_attachment($_);
+ foreach my $page (@pages) {
+ if ($attachment && IkiWiki::Plugin::attachment->can("is_held_attachment")) {
+ my $f=IkiWiki::Plugin::attachment::is_held_attachment($page);
if (defined $f) {
require IkiWiki::Render;
IkiWiki::prune($f);
- 0;
}
}
- 1;
- } @pages;
+ }
+ @pages=grep { exists $pagesources{$_} } @pages;
return unless @pages;
foreach my $page (@pages) {