Commit d19be29a authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 238683: fix for usage of uninitialized value in concatenation in…

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.
parent 811ee0a7
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment