summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/img.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/img.pm')
-rw-r--r--IkiWiki/Plugin/img.pm13
1 files changed, 2 insertions, 11 deletions
diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm
index 7e167240e..0503f4097 100644
--- a/IkiWiki/Plugin/img.pm
+++ b/IkiWiki/Plugin/img.pm
@@ -10,7 +10,7 @@ use IkiWiki 2.00;
my %imgdefaults;
sub import { #{{{
- hook(type => "preprocess", id => "img", call => \&preprocess);
+ hook(type => "preprocess", id => "img", call => \&preprocess, scan => 1);
} #}}}
sub preprocess (@) { #{{{
@@ -31,17 +31,8 @@ sub preprocess (@) { #{{{
return '';
}
+ push @{$links{$params{page}}}, $image;
my $file = bestlink($params{page}, $image);
- if (! $file) {
- # TODO: this may not be right, depending on where the file is
- # created in the end
- add_depends($params{page}, $image);
-
- return "[[img ".sprintf(gettext("%s not found"), $image)."]]";
- }
- else {
- add_depends($params{page}, $file);
- }
my $dir = IkiWiki::dirname($file);
my $base = IkiWiki::basename($file);