From: Joey Hess Date: Sun, 17 Nov 2013 16:51:20 +0000 (-0400) Subject: autoindex and tag use transient underlay when not committing, so do not need to disab... X-Git-Tag: debian/3.20140102~60 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/e11a87acfa2356eb75e03895e2ecc2eb98f2e298 autoindex and tag use transient underlay when not committing, so do not need to disable only_committed_changes --- diff --git a/IkiWiki/Plugin/autoindex.pm b/IkiWiki/Plugin/autoindex.pm index dede9eb05..78571b276 100644 --- a/IkiWiki/Plugin/autoindex.pm +++ b/IkiWiki/Plugin/autoindex.pm @@ -33,9 +33,6 @@ sub checkconfig () { if (! defined $config{autoindex_commit}) { $config{autoindex_commit} = 1; } - if (! $config{autoindex_commit}) { - $config{only_committed_changes}=0; - } } sub genindex ($) { diff --git a/IkiWiki/Plugin/tag.pm b/IkiWiki/Plugin/tag.pm index c07d0131e..605f41599 100644 --- a/IkiWiki/Plugin/tag.pm +++ b/IkiWiki/Plugin/tag.pm @@ -58,9 +58,6 @@ sub checkconfig () { if (! defined $config{tag_autocreate_commit}) { $config{tag_autocreate_commit} = 1; } - if (! $config{tag_autocreate_commit}) { - $config{only_committed_changes}=0; - } } sub taglink ($) {