summaryrefslogtreecommitdiff
path: root/lang/perl5.6/files/patch-CGI.pm
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
commitfa4a943c17e47bf910596a414fd7287983350b9b (patch)
treedc76cec18a505befc330e612e0a56bf1caa5ca49 /lang/perl5.6/files/patch-CGI.pm
parent- Fix manpage pointing to correct PREFIX for binary and conf (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_0_0'.release/7.0.0
Notes
Notes: svn path=/head/; revision=207820 svn path=/tags/RELEASE_7_0_0/; revision=207821; tag=release/7.0.0
Diffstat (limited to 'lang/perl5.6/files/patch-CGI.pm')
-rw-r--r--lang/perl5.6/files/patch-CGI.pm15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/perl5.6/files/patch-CGI.pm b/lang/perl5.6/files/patch-CGI.pm
deleted file mode 100644
index 01410684a7ed..000000000000
--- a/lang/perl5.6/files/patch-CGI.pm
+++ /dev/null
@@ -1,15 +0,0 @@
---- lib/CGI.pm.orig Tue Sep 30 10:16:33 2003
-+++ lib/CGI.pm Tue Sep 30 10:20:35 2003
-@@ -1497,8 +1497,10 @@ sub startform {
- $method = lc($method) || 'post';
- $enctype = $enctype || &URL_ENCODED;
- unless (defined $action) {
-- $action = $self->url(-absolute=>1,-path=>1);
-- $action .= "?$ENV{QUERY_STRING}" if $ENV{QUERY_STRING};
-+ $action = $self->escapeHTML($self->url(-absolute=>1,-path=>1));
-+ if (length($ENV{QUERY_STRING})>0) {
-+ $action .= "?".$self->escapeHTML($ENV{QUERY_STRING},1);
-+ }
- }
- $action = qq(action="$action");
- my($other) = @other ? " @other" : '';