Revision 1a39394f
Von Moritz Bunkus vor etwa 17 Jahren hinzugefügt
bin/mozilla/common.pl | ||
---|---|---|
514 | 514 |
|
515 | 515 |
$form->{title} = $locale->text("History"); |
516 | 516 |
$form->header(); |
517 |
print $form->parse_html_template( "common/show_history", { |
|
517 |
print $form->parse_html_template2( "common/show_history", {
|
|
518 | 518 |
"DATEN" => $form->get_history($dbh,$form->{input_name},"",$form->{order}), |
519 | 519 |
"SUCCESS" => ($form->get_history($dbh,$form->{input_name}) ne "0"), |
520 | 520 |
uc($sort) => 1, |
... | ... | |
559 | 559 |
$form->{title} = $form->{vc} eq "customer" ? |
560 | 560 |
$locale->text("Customer details") : $locale->text("Vendor details"); |
561 | 561 |
$form->header(); |
562 |
print($form->parse_html_template("common/show_vc_details", |
|
563 |
{ "is_customer" => $form->{vc} eq "customer" })); |
|
562 |
print($form->parse_html_template2("common/show_vc_details",
|
|
563 |
{ "is_customer" => $form->{vc} eq "customer" }));
|
|
564 | 564 |
|
565 | 565 |
$lxdebug->leave_sub(); |
566 | 566 |
} |
Auch abrufbar als: Unified diff
Umstellung der Vorlagen in templates/webpages/common von HTML::Template auf Template.