if (! defined $config{autoindex_commit}) {
$config{autoindex_commit} = 1;
}
+ if (! $config{autoindex_commit}) {
+ $config{only_committed_changes}=0;
+ }
}
sub genindex ($) {
sub checkconfig () {
$config{comments_commit} = 1
unless defined $config{comments_commit};
+ if (! $config{comments_commit}) {
+ $config{only_committed_changes}=0;
+ }
$config{comments_pagespec} = ''
unless defined $config{comments_pagespec};
$config{comments_closed_pagespec} = ''
if (! defined $config{tag_autocreate_commit}) {
$config{tag_autocreate_commit} = 1;
}
+ if (! $config{tag_autocreate_commit}) {
+ $config{only_committed_changes}=0;
+ }
}
sub taglink ($) {