Revision 7b2d21f4
Von Moritz Bunkus vor fast 17 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
511 | 511 |
'-path' => $base_path); |
512 | 512 |
} |
513 | 513 |
|
514 |
my %cgi_params = ('-type' => $params{type}); |
|
514 |
my %cgi_params = ('-type' => $params{content_type});
|
|
515 | 515 |
$cgi_params{'-charset'} = $params{charset} if ($parmas{charset}); |
516 | 516 |
|
517 | 517 |
my $output = $cgi->header('-cookie' => $session_cookie, |
... | ... | |
594 | 594 |
$ajax .= $item->show_javascript(); |
595 | 595 |
} |
596 | 596 |
|
597 |
print $self->create_http_response('type' => 'text/html',
|
|
598 |
'charset' => $db_charset,); |
|
597 |
print $self->create_http_response('content_type' => 'text/html',
|
|
598 |
'charset' => $db_charset,);
|
|
599 | 599 |
print qq|${doctype}<html> |
600 | 600 |
<head> |
601 | 601 |
<title>$self->{titlebar}</title> |
Auch abrufbar als: Unified diff
Parametername von "type" in "content_type" geändert.