diff options
author | Joey Hess <joey@kitenet.net> | 2013-11-17 12:51:20 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-11-17 12:51:20 -0400 |
commit | e11a87acfa2356eb75e03895e2ecc2eb98f2e298 (patch) | |
tree | b84bab143bb5fb77713992cdd4646c360ed803f1 /IkiWiki/Plugin | |
parent | 7dd110ba51c738e249ea974b71f85477c543e5bc (diff) | |
download | ikiwiki-e11a87acfa2356eb75e03895e2ecc2eb98f2e298.tar ikiwiki-e11a87acfa2356eb75e03895e2ecc2eb98f2e298.tar.gz |
autoindex and tag use transient underlay when not committing, so do not need to disable only_committed_changes
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/autoindex.pm | 3 | ||||
-rw-r--r-- | IkiWiki/Plugin/tag.pm | 3 |
2 files changed, 0 insertions, 6 deletions
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 ($) { |