summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/HTMLify.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-04-20 04:25:22 +0000
committerfukachan <fukachan>2002-04-20 04:25:22 +0000
commit06bf3832bc4100ac3fde6d01e988e21e644beeb9 (patch)
tree8e84c38227c35b81f2511bba369638f42acd4284 /fml/lib/FML/Process/HTMLify.pm
parentc014afcfc6e2dae4869396475638de56848265a8 (diff)
downloadfml8-06bf3832bc4100ac3fde6d01e988e21e644beeb9.tar.gz
fml8-06bf3832bc4100ac3fde6d01e988e21e644beeb9.tar.bz2
fml8-06bf3832bc4100ac3fde6d01e988e21e644beeb9.zip
bug fix subdir checking
Diffstat (limited to 'fml/lib/FML/Process/HTMLify.pm')
-rw-r--r--fml/lib/FML/Process/HTMLify.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/HTMLify.pm b/fml/lib/FML/Process/HTMLify.pm
index 0b97afb9..c275585b 100644
--- a/fml/lib/FML/Process/HTMLify.pm
+++ b/fml/lib/FML/Process/HTMLify.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001,2002 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: HTMLify.pm,v 1.15 2002/04/15 04:01:47 fukachan Exp $
+# $FML: HTMLify.pm,v 1.16 2002/04/19 05:21:54 fukachan Exp $
#
package FML::Process::HTMLify;
@@ -181,7 +181,7 @@ sub _check_subdir_exists
next if /^\./;
$subdir = File::Spec->catfile($src_dir, $_);
- if ($subdir) {
+ if (-d $subdir) {
push(@subdir, $subdir);
$status = 1;
}