From a473cb2f74738d369130135b8c3ce0f6ef66af02 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 9 Oct 2008 19:09:16 -0400 Subject: orphans: Fix unquoted page name in regexp. --- IkiWiki/Plugin/orphans.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'IkiWiki') diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index b910758e0..32cbc5dd5 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -43,7 +43,7 @@ sub preprocess (@) { #{{{ next if grep { length $_ && ($_ !~ /\/\Q$discussion\E$/i || ! $config{discussion}) && - bestlink($page, $_) !~ /^($page|)$/ + bestlink($page, $_) !~ /^(\Q$page\E|)$/ } @{$links{$page}}; push @orphans, $page; } -- cgit v1.2.3