Revision 9aaca433
Von Moritz Bunkus vor etwa 17 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
546 | 546 |
return $file; |
547 | 547 |
} |
548 | 548 |
|
549 |
sub parse_html_template2 {
|
|
549 |
sub parse_html_template { |
|
550 | 550 |
$main::lxdebug->enter_sub(); |
551 | 551 |
|
552 | 552 |
my ($self, $file, $additional_params) = @_; |
... | ... | |
598 | 598 |
$self->{title} = $title if ($title); |
599 | 599 |
|
600 | 600 |
$self->header(); |
601 |
print $self->parse_html_template2("generic/error", $add_params);
|
|
601 |
print $self->parse_html_template("generic/error", $add_params); |
|
602 | 602 |
|
603 | 603 |
die("Error: $error\n"); |
604 | 604 |
} |
... | ... | |
614 | 614 |
$self->{title} = $title if ($title); |
615 | 615 |
|
616 | 616 |
$self->header(); |
617 |
print $self->parse_html_template2("generic/information", $add_params);
|
|
617 |
print $self->parse_html_template("generic/information", $add_params); |
|
618 | 618 |
|
619 | 619 |
die("Information: $error\n"); |
620 | 620 |
} |
Auch abrufbar als: Unified diff
Die Funktion Form::parse_html_template2() in Form::parse_html_template() umbenannt (letztere wurde in Revision 2923 entfernt).