diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-10-04 16:11:10 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-10-04 16:11:10 -0400 |
commit | 2af988b86fca6d2ca9476ae698cf1e840969af78 (patch) | |
tree | 9ceb8942f138a66a55348c9fb593c4852fedf683 /IkiWiki/Plugin | |
parent | de6eba6ddde9f6d4577b49b204dcdd9f1a203ed4 (diff) |
listdirectives: contentless dependency
Another one that probably doesn't matter, but for completness.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/listdirectives.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/listdirectives.pm b/IkiWiki/Plugin/listdirectives.pm index bd73f1a04..96150f986 100644 --- a/IkiWiki/Plugin/listdirectives.pm +++ b/IkiWiki/Plugin/listdirectives.pm @@ -84,7 +84,7 @@ sub preprocess (@) { foreach my $plugin (@pluginlist) { $result .= '<li class="listdirectives">'; my $link=linkpage($config{directive_description_dir}."/".$plugin); - add_depends($params{page}, $link); + add_depends($params{page}, $link, content => 0); $result .= htmllink($params{page}, $params{destpage}, $link); $result .= '</li>'; } |