Fixes a bug in skipping of illegal source files introduced in 3.20100427.

master
Joey Hess 2010-05-04 20:26:17 -04:00
parent 76a5dbe7cb
commit d0a5945000
2 changed files with 3 additions and 0 deletions

View File

@ -321,6 +321,7 @@ sub find_src_files () {
my ($f) = $file =~ /$config{wiki_file_regexp}/; # untaint
if (! defined $f) {
warn(sprintf(gettext("skipping bad filename %s"), $file)."\n");
return;
}
if ($underlay) {

2
debian/changelog vendored
View File

@ -12,6 +12,8 @@ ikiwiki (3.20100502) UNRELEASED; urgency=low
are kept separate for now to avoid breaking modified templates.)
* websetup: Only display Setup button on admins' preferences page.
* graphviz: Fix display of preexisting images in preview mode.
* Fixes a bug in skipping of illegal source files introduced in
3.20100427.
-- Joey Hess <joeyh@debian.org> Sun, 02 May 2010 13:22:50 -0400