apache::registry + use strict curiosity

2001-04-26 Thread Eric Kolve
I found something a bit curious that I was wondering if someone could explain. I have the following apache::registry script I called test.reg: #!/usr/bin/perl use strict; if($test){ # do stuff } print qq|HTTP/1.1 200 OK\r\n|; print HELLO WORLD\n\n; I ran my server in single-user mode

Re: apache::registry + use strict curiosity

2001-04-26 Thread Ken Williams
Yes, exactly. After the first run, $test got an entry in the symbol table. Not usually an issue in CGI perl. =) [EMAIL PROTECTED] (Eric Kolve) wrote: I found something a bit curious that I was wondering if someone could explain. I have the following apache::registry script I called test.reg:

Re: apache::registry + use strict curiosity

2001-04-26 Thread newsreader
that's no apache::registry. that's perl there are big guns here who can answer your questions but it am not one of them. On Thu, Apr 26, 2001 at 02:25:17PM -0700, Eric Kolve wrote: I found something a bit curious that I was wondering if someone could explain. I have the following