diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-12-07 02:10:26 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-12-07 02:10:26 +0000 |
commit | 1f42692825f0c2ae2aff7c8dc9679ad797e3f97c (patch) | |
tree | 20da882095e261949aa4ef5a6d9cf513a2ef0a6a /lib/CGI.pm | |
parent | 1f440eb2be23907e83a24cd58474579346e67832 (diff) | |
download | perl-1f42692825f0c2ae2aff7c8dc9679ad797e3f97c.tar.gz |
Upgrade to CGI-3.14.
Mmm...pi. Oh, also including some Pod fixes in bleadperl that haven't
yet been applied to the actual CGI distribution yet.
p4raw-id: //depot/perl@26288
Diffstat (limited to 'lib/CGI.pm')
-rw-r--r-- | lib/CGI.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CGI.pm b/lib/CGI.pm index 27ca5bbe88..bd3488e465 100644 --- a/lib/CGI.pm +++ b/lib/CGI.pm @@ -18,8 +18,8 @@ use Carp 'croak'; # The most recent version and complete docs are available at: # http://stein.cshl.org/WWW/software/CGI/ -$CGI::revision = '$Id: CGI.pm,v 1.193 2005/12/05 13:52:24 lstein Exp $'; -$CGI::VERSION='3.13_01'; +$CGI::revision = '$Id: CGI.pm,v 1.194 2005/12/06 22:12:56 lstein Exp $'; +$CGI::VERSION='3.14_01'; # HARD-CODED LOCATION FOR FILE UPLOAD TEMPORARY FILES. # UNCOMMENT THIS ONLY IF YOU KNOW WHAT YOU'RE DOING. @@ -2509,7 +2509,7 @@ sub scrolling_list { $label=$self->escapeHTML($label); my($value)=$self->escapeHTML($_,1); my $attribs = $self->_set_attributes($_, $attributes); - $result .= "<option$selectit$attribs value=\"$value\">$label</option>\n"; + $result .= "<option ${selectit}${attribs}value=\"$value\">$label</option>\n"; } $result .= "</select>"; $self->register_parameter($name); |