diff options
author | Simon McVittie <smcv@debian.org> | 2010-12-26 22:19:58 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2011-01-07 20:11:38 +0000 |
commit | 40f85e5c91c86a55661f68a5e9e38cc2c2a1e1be (patch) | |
tree | 8b9e693710bfd7af65df5623e653d8fa262e01f6 /IkiWiki | |
parent | f695bdd843520729aa73cd063c22f1ebd1a01f1f (diff) |
tag: default to tag_autocreate_commit=1 as intended
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/tag.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/tag.pm b/IkiWiki/Plugin/tag.pm index e4c8a1155..13dabce0c 100644 --- a/IkiWiki/Plugin/tag.pm +++ b/IkiWiki/Plugin/tag.pm @@ -7,6 +7,7 @@ use strict; use IkiWiki 3.00; sub import { + hook(type => "checkconfig", id => "tag", call => \&checkconfig); hook(type => "getopt", id => "tag", call => \&getopt); hook(type => "getsetup", id => "tag", call => \&getsetup); hook(type => "preprocess", id => "tag", call => \&preprocess_tag, scan => 1); @@ -53,6 +54,12 @@ sub getsetup () { }, } +sub checkconfig () { + if (! defined $config{tag_autocreate_commit}) { + $config{tag_autocreate_commit} = 1; + } +} + sub taglink ($) { my $tag=shift; |