https://issues.apache.org/bugzilla/show_bug.cgi?id=46380
Russell Rademacher <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW --- Comment #2 from Russell Rademacher <[email protected]> 2008-12-11 20:50:14 PST --- http://xpthemetest.com/cgi-bin/test.cgi This is the code for the script: --------------------- #!/usr/bin/perl print "Content-Type: text/html\n\n"; print "Argument count: $#ARGV<br>\n"; for ($i = 0; $i <= $#ARGV; $i++){ print "Argument $i is: "; print @ARGV[$i]; print "<br>\n"; } 1; --------------------- prior to 2.2.10, it would return: Argument count: -1 -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
