From 97e21ae21caa2418015ae512755e8078a0bc5ccf Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 21 Jul 2008 16:53:52 -0400 Subject: [PATCH] don't show an error if the image is missing, instead, a broken link --- IkiWiki/Plugin/img.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm index 42de81bd1..748d28ace 100644 --- a/IkiWiki/Plugin/img.pm +++ b/IkiWiki/Plugin/img.pm @@ -42,8 +42,8 @@ sub preprocess (@) { #{{{ my $file = bestlink($params{page}, $image); my $srcfile = srcfile($file, 1); - if (! defined $srcfile) { - error(sprintf(gettext("%s not found"), $image)); + if (! length $file || ! defined $srcfile) { + return htmllink($params{page}, $params{destpage}, $image); } my $dir = $params{page}; -- 2.45.0