diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-03 16:23:41 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-03 16:23:41 -0400 |
commit | 9e0cbb73fe550d05e668d3584ef6f7981e781c8e (patch) | |
tree | f468eb3956ca64b8c90f9fba13a538c853894e80 /IkiWiki/Setup | |
parent | 43307fb21556098024331ee26563e5be19ccea3e (diff) |
plugin safe/rebuild controls
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r-- | IkiWiki/Setup/Standard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm index dd613fd03..c87fb80f5 100644 --- a/IkiWiki/Setup/Standard.pm +++ b/IkiWiki/Setup/Standard.pm @@ -62,7 +62,7 @@ sub dumpvalues ($@) { #{{{ my $key=shift; my %info=%{shift()}; - next if $info{type} eq "internal"; + next if $info{type} eq "internal" || $key eq "plugin"; push @ret, "\t# ".$info{description} if exists $info{description}; |