summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-03-26 11:07:44 +0100
committerjocuri%softhome.net <>2004-03-26 11:07:44 +0100
commitd19be29a71036cf9c8572d1c53d0050420f3370e (patch)
tree679b477f2113cec2fe0015c56d80fce0fd0ead85 /Bugzilla
parent811ee0a77f4d52c49659244d0141fbc83fc57c02 (diff)
downloadbugzilla-d19be29a71036cf9c8572d1c53d0050420f3370e.tar.gz
bugzilla-d19be29a71036cf9c8572d1c53d0050420f3370e.tar.xz
Patch for bug 238683: fix for usage of uninitialized value in concatenation in Bugzilla/CGI.pm: remove extra $ char; patch by corporate_gadfly@hotmail.com; r=vlad; a=justdave.
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/CGI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm
index 40c160b83..21cfa19b2 100644
--- a/Bugzilla/CGI.pm
+++ b/Bugzilla/CGI.pm
@@ -118,7 +118,7 @@ sub multipart_init {
my($self,@p) = @_;
my($boundary,$nph,@other) = rearrange(['BOUNDARY','NPH'],@p);
$boundary = $boundary || '------- =_aaaaaaaaaa0';
- $self->{'separator'} = "\r\n--$boundary$\r\n";
+ $self->{'separator'} = "\r\n--$boundary\r\n";
$self->{'final_separator'} = "\r\n--$boundary--\r\n";
my $type = SERVER_PUSH($boundary);
return $self->header(