Running ActiveState Perl 5.10.1 on win32.
How is it that this code:
die(defined($r->unparsed_uri =~ '/(logout.pl)?$'));
...dies with 1
, whereas changing the same line to say this:
die($r->unparsed_uri =~ '/(logout.pl)?$');
...dies with Use of uninitialized value in die
?
How is it defined
yet uninitialized
? I thought uninitialized meant undefined.