missed localising a string

master
Joey Hess 2007-11-08 15:03:57 -05:00
parent 35aed71501
commit 6a751b2a83
1 changed files with 3 additions and 4 deletions

View File

@ -26,10 +26,9 @@ sub preprocess (@) { #{{{
next if $link =~ /.*\/\Q$discussion\E/i && $config{discussion}; next if $link =~ /.*\/\Q$discussion\E/i && $config{discussion};
my $bestlink=bestlink($page, $link); my $bestlink=bestlink($page, $link);
next if length $bestlink; next if length $bestlink;
push @broken, push @broken, sprintf(gettext("%s from %s"),
htmllink($page, $params{destpage}, $link, noimageinline => 1). htmllink($page, $params{destpage}, $link, noimageinline => 1),
" from ". htmllink($params{page}, $params{destpage}, $page, noimageinline => 1));
htmllink($params{page}, $params{destpage}, $page, noimageinline => 1);
} }
} }
} }