diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-05 18:20:52 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-05 18:20:52 +0000 |
commit | b2bd444f31fd9f294ee0dbc4b9a61b1e8c04055c (patch) | |
tree | b1ab7c05d2c2ed94dffea9a504ed46f36dfe0c96 /IkiWiki/Plugin/orphans.pm | |
parent | fbb0762ccf7b1dcac33006424e1dee7f457210a3 (diff) | |
download | ikiwiki-b2bd444f31fd9f294ee0dbc4b9a61b1e8c04055c.tar ikiwiki-b2bd444f31fd9f294ee0dbc4b9a61b1e8c04055c.tar.gz |
* Allow discussion links on pages to be turned off with --no-discussion.
Diffstat (limited to 'IkiWiki/Plugin/orphans.pm')
-rw-r--r-- | IkiWiki/Plugin/orphans.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index 945892d17..a7aa89f58 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -31,7 +31,7 @@ sub preprocess (@) { #{{{ next unless IkiWiki::globlist_match($page, $params{pages}); # If the page has a link to some other page, it's # indirectly linked to a page via that page's backlinks. - next if grep { length $_ && $_ !~/\/Discussion$/i && IkiWiki::bestlink($page, $_) ne $page } @{$IkiWiki::links{$page}}; + next if grep { length $_ && ($_ !~/\/Discussion$/i || ! $IkiWiki::config{discussion}) && IkiWiki::bestlink($page, $_) ne $page } @{$IkiWiki::links{$page}}; push @orphans, $page; } |