Subject: | startform broken again |
start_form seems to be generating "Use of uninitialized value" again. I assume this is similar to #3218
hermes:~# more test.pl
#!/usr/bin/perl -w
use strict;
use CGI;
my $q = new CGI;
print
$q->start_html,
$q->start_form,
$q->end_form,
$q->end_html;
print "\n\n",$CGI::VERSION, "\n";
hermes:~# ./test.pl
Use of uninitialized value in length at (eval 7) line 12.
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US"><head><title>Untitled Document</title>
</head><body><form method="post" action="/./test.pl" enctype="application/x-www-form-urlencoded">
<div></div></form></body></html>
3.01