зеркало из https://github.com/mozilla/pjs.git
Bug 265731: multipart_start in the server-push handling code wasn't honoring the $cgi->charset setting.
r=myk, a=justdave
This commit is contained in:
Родитель
91dfc84b6e
Коммит
7e123667f4
|
@ -153,7 +153,10 @@ sub multipart_start {
|
|||
my(@header);
|
||||
my($self,@p) = @_;
|
||||
my($type,@other) = rearrange([['TYPE','CONTENT_TYPE','CONTENT-TYPE']],@p);
|
||||
my $charset = $self->charset;
|
||||
$type = $type || 'text/html';
|
||||
$type .= "; charset=$charset" if $type ne '' and $type =~ m!^text/! and $type !~ /\bcharset\b/ and $charset ne '';
|
||||
|
||||
push(@header,"Content-Type: $type");
|
||||
|
||||
# Add the cookies in if we have any
|
||||
|
|
Загрузка…
Ссылка в новой задаче