>>>>> "Mike" == Mike Wille <[EMAIL PROTECTED]> writes:
Mike> I am encountering a wierd problem where perl scripts running under a normal
Mike> cgi-bin (ie no mod_perl) have a '0' appended to the output.
I've seen this happen when people mistakenly write:
print system "foo";
instead of
print `foo`;
but of course they should have written:
system "foo";
instead.
As to why it's not happening in an Apache::Registry script, I cannot
say.
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!