Hi,
could you please apply the patch proposed by ISHIGAKI. I would
appreciate Jemplate package to be functional on Win32 platform.
In my opinion the more proper patch for Jemplate.pm would be:
- unless (-e $arg) { next; } # file exists
- unless (-s $arg) { next; } # file size > 0
+ next unless (-e $arg); # file or directory exists
+ next if (-f $arg && -z $arg); # if regular file then size > 0
But ISHIGAKI's patch works as well.
Thanks
--
kmx